Skip to content

Commit 36a5af8

Browse files
authored
Updated data notebook to include required urn in collection ID. (#52)
1 parent 6f5d13f commit 36a5af8

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

jupyter-notebooks/tutorials/2_working_with_data.ipynb

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
"metadata": {},
188188
"outputs": [],
189189
"source": [
190-
"data_set = \"SNDR_SNPP_ATMS_L1B_OUTPUT___1\"\n",
190+
"data_set = \"urn:nasa:unity:uds_local_test:TEST1:SNDR_SNPP_ATMS_L1B_OUTPUT___1\"\n",
191191
"url = env['url'] + \"am-uds-dapa/collections/\"+data_set+\"/items\"\n",
192192
"\n",
193193
"params = []\n",
@@ -232,7 +232,7 @@
232232
"metadata": {},
233233
"outputs": [],
234234
"source": [
235-
"data_set = \"SNDR_SNPP_ATMS_L1B_OUTPUT___1\"\n",
235+
"data_set = \"urn:nasa:unity:uds_local_test:TEST1:SNDR_SNPP_ATMS_L1B_OUTPUT___1\"\n",
236236
"url = env['url'] + \"am-uds-dapa/collections/\"+data_set+\"/items\"\n",
237237
"# the datetime,limit, and offset are included due to a current bug in the API Gatway setting these values to 'none'.\n",
238238
"# Example date/time params\n",
@@ -278,7 +278,7 @@
278278
"metadata": {},
279279
"outputs": [],
280280
"source": [
281-
"collection_id = \"NEW_COLLECTION_EXAMPLE_L1B___5\"\n",
281+
"collection_id = \"urn:nasa:unity:uds_local_test:TEST1:NEW_COLLECTION_EXAMPLE_L1B___5\"\n",
282282
"collection = {\n",
283283
" \"type\": \"Collection\",\n",
284284
" \"id\": collection_id,\n",
@@ -315,10 +315,10 @@
315315
" \"spatial\": {\n",
316316
" \"bbox\": [\n",
317317
" [\n",
318-
" -180,\n",
319-
" -90,\n",
320-
" 180,\n",
321-
" 90\n",
318+
" 0,\n",
319+
" 0,\n",
320+
" 0,\n",
321+
" 0\n",
322322
" ]\n",
323323
" ]\n",
324324
" },\n",
@@ -340,7 +340,7 @@
340340
" \"(^test_file.*)(\\\\.nc|\\\\.nc\\\\.cas|\\\\.cmr\\\\.xml)\"\n",
341341
" ],\n",
342342
" \"process\": [\n",
343-
" \"snpp.level1\"\n",
343+
" \"stac\"\n",
344344
" ]\n",
345345
" }\n",
346346
"}\n",
@@ -436,7 +436,6 @@
436436
"import xarray as xr\n",
437437
"ds = xr.open_dataset('test_file11.nc')\n",
438438
"ds"
439-
440439
]
441440
},
442441
{

0 commit comments

Comments
 (0)