From 13debf2cd09c716b15903e3496829a524acc2b6c Mon Sep 17 00:00:00 2001 From: ucar-tmeyer Date: Thu, 13 Feb 2025 13:04:21 -0700 Subject: [PATCH] Updating all notebooks to point to edex-cloud EDEX instead of edex-beta --- .../examples/notebooks/Colored_Surface_Temperature_Plot.ipynb | 2 +- docs/source/examples/notebooks/Colorized_Grid_Data.ipynb | 2 +- .../examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb | 2 +- docs/source/examples/notebooks/GOES_CIRA_Product_Writer.ipynb | 2 +- .../examples/notebooks/Grid_Levels_and_Parameters.ipynb | 2 +- .../examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb | 2 +- .../examples/notebooks/Map_Resources_and_Topography.ipynb | 2 +- docs/source/examples/notebooks/Model_Sounding_Data.ipynb | 2 +- docs/source/examples/notebooks/NEXRAD_Level3_Radar.ipynb | 2 +- .../notebooks/Precip_Accumulation_Region_of_Interest.ipynb | 2 +- .../source/examples/notebooks/Regional_Surface_Obs_Plot.ipynb | 2 +- docs/source/examples/notebooks/Satellite_Imagery.ipynb | 2 +- docs/source/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb | 2 +- .../notebooks/Watch_Warning_and_Advisory_Plotting.ipynb | 2 +- examples/notebooks/Colored_Surface_Temperature_Plot.ipynb | 2 +- examples/notebooks/Colorized_Grid_Data.ipynb | 2 +- examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb | 2 +- examples/notebooks/GOES_CIRA_Product_Writer.ipynb | 2 +- examples/notebooks/Grid_Levels_and_Parameters.ipynb | 2 +- examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb | 2 +- examples/notebooks/Map_Resources_and_Topography.ipynb | 4 ++-- examples/notebooks/Model_Sounding_Data.ipynb | 2 +- examples/notebooks/NEXRAD_Level3_Radar.ipynb | 2 +- .../notebooks/Precip_Accumulation_Region_of_Interest.ipynb | 2 +- examples/notebooks/Regional_Surface_Obs_Plot.ipynb | 2 +- examples/notebooks/Satellite_Imagery.ipynb | 2 +- examples/notebooks/Upper_Air_BUFR_Soundings.ipynb | 2 +- examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/docs/source/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb b/docs/source/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb index 0839d1c..1c1c450 100644 --- a/docs/source/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb +++ b/docs/source/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb @@ -124,7 +124,7 @@ "outputs": [], "source": [ "# New obs request\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)\n", "request = DataAccessLayer.newDataRequest(\"obs\", envelope=envelope)\n", "params = [\"temperature\", \"longitude\", \"latitude\", \"stationName\"]\n", diff --git a/docs/source/examples/notebooks/Colorized_Grid_Data.ipynb b/docs/source/examples/notebooks/Colorized_Grid_Data.ipynb index 1c025b7..99f62e9 100644 --- a/docs/source/examples/notebooks/Colorized_Grid_Data.ipynb +++ b/docs/source/examples/notebooks/Colorized_Grid_Data.ipynb @@ -103,7 +103,7 @@ } ], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"grid\")\n", "request.setLocationNames(\"RAP13\")\n", diff --git a/docs/source/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb b/docs/source/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb index 4c9c5b0..175dd87 100644 --- a/docs/source/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb +++ b/docs/source/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb @@ -94,7 +94,7 @@ "metadata": {}, "outputs": [], "source": [ - "server = 'edex-beta.unidata.ucar.edu'\n", + "server = 'edex-cloud.unidata.ucar.edu'\n", "DataAccessLayer.changeEDEXHost(server)" ] }, diff --git a/docs/source/examples/notebooks/GOES_CIRA_Product_Writer.ipynb b/docs/source/examples/notebooks/GOES_CIRA_Product_Writer.ipynb index 07319d3..2b2935c 100644 --- a/docs/source/examples/notebooks/GOES_CIRA_Product_Writer.ipynb +++ b/docs/source/examples/notebooks/GOES_CIRA_Product_Writer.ipynb @@ -99,7 +99,7 @@ "outputs": [], "source": [ "# Create an EDEX data request\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"satellite\")" ] diff --git a/docs/source/examples/notebooks/Grid_Levels_and_Parameters.ipynb b/docs/source/examples/notebooks/Grid_Levels_and_Parameters.ipynb index 73452b8..ad68f65 100644 --- a/docs/source/examples/notebooks/Grid_Levels_and_Parameters.ipynb +++ b/docs/source/examples/notebooks/Grid_Levels_and_Parameters.ipynb @@ -94,7 +94,7 @@ "outputs": [], "source": [ "# Unidata's cloud EDEX instance is used in this example\n", - "edex_url = \"edex-beta.unidata.ucar.edu\"\n", + "edex_url = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edex_url)" ] }, diff --git a/docs/source/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb b/docs/source/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb index 93af936..0bc741f 100644 --- a/docs/source/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb +++ b/docs/source/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb @@ -144,7 +144,7 @@ "outputs": [], "source": [ "# EDEX Request\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)\n", "request = DataAccessLayer.newDataRequest(\"obs\")\n", "\n", diff --git a/docs/source/examples/notebooks/Map_Resources_and_Topography.ipynb b/docs/source/examples/notebooks/Map_Resources_and_Topography.ipynb index 9d4db8b..56f2e94 100644 --- a/docs/source/examples/notebooks/Map_Resources_and_Topography.ipynb +++ b/docs/source/examples/notebooks/Map_Resources_and_Topography.ipynb @@ -93,7 +93,7 @@ "outputs": [], "source": [ "# Server, Data Request Type, and Database Table\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest('maps')" ] }, diff --git a/docs/source/examples/notebooks/Model_Sounding_Data.ipynb b/docs/source/examples/notebooks/Model_Sounding_Data.ipynb index 6a848ea..a37b218 100644 --- a/docs/source/examples/notebooks/Model_Sounding_Data.ipynb +++ b/docs/source/examples/notebooks/Model_Sounding_Data.ipynb @@ -100,7 +100,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"modelsounding\")\n", "forecastModel = \"GFS\"\n", "request.addIdentifier(\"reportType\", forecastModel)\n", diff --git a/docs/source/examples/notebooks/NEXRAD_Level3_Radar.ipynb b/docs/source/examples/notebooks/NEXRAD_Level3_Radar.ipynb index 9058a02..e02b8a5 100644 --- a/docs/source/examples/notebooks/NEXRAD_Level3_Radar.ipynb +++ b/docs/source/examples/notebooks/NEXRAD_Level3_Radar.ipynb @@ -89,7 +89,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"radar\")" ] }, diff --git a/docs/source/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb b/docs/source/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb index 80b64e7..85aa09b 100644 --- a/docs/source/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb +++ b/docs/source/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb @@ -127,7 +127,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"grid\", envelope=conus_envelope)" ] }, diff --git a/docs/source/examples/notebooks/Regional_Surface_Obs_Plot.ipynb b/docs/source/examples/notebooks/Regional_Surface_Obs_Plot.ipynb index fd1af4b..8dbc08b 100644 --- a/docs/source/examples/notebooks/Regional_Surface_Obs_Plot.ipynb +++ b/docs/source/examples/notebooks/Regional_Surface_Obs_Plot.ipynb @@ -320,7 +320,7 @@ "outputs": [], "source": [ "# EDEX connection\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)" ] }, diff --git a/docs/source/examples/notebooks/Satellite_Imagery.ipynb b/docs/source/examples/notebooks/Satellite_Imagery.ipynb index 72ec79a..a3f558a 100644 --- a/docs/source/examples/notebooks/Satellite_Imagery.ipynb +++ b/docs/source/examples/notebooks/Satellite_Imagery.ipynb @@ -95,7 +95,7 @@ "outputs": [], "source": [ "# Create an EDEX data request\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"satellite\")" ] diff --git a/docs/source/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb b/docs/source/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb index 1be695c..871c7b0 100644 --- a/docs/source/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb +++ b/docs/source/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb @@ -99,7 +99,7 @@ "outputs": [], "source": [ "# Set the edex server\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "\n", "# Set data type\n", diff --git a/docs/source/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb b/docs/source/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb index 8bf1148..028e5e1 100644 --- a/docs/source/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb +++ b/docs/source/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb @@ -213,7 +213,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"warning\")\n", "params = [\"phensig\", \"sig\"]\n", diff --git a/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb b/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb index 0fe10b6..4ddb08e 100644 --- a/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb +++ b/examples/notebooks/Colored_Surface_Temperature_Plot.ipynb @@ -122,7 +122,7 @@ "outputs": [], "source": [ "# New obs request\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)\n", "request = DataAccessLayer.newDataRequest(\"obs\", envelope=envelope)\n", "params = [\"temperature\", \"longitude\", \"latitude\", \"stationName\"]\n", diff --git a/examples/notebooks/Colorized_Grid_Data.ipynb b/examples/notebooks/Colorized_Grid_Data.ipynb index 5a99a14..5cc71a5 100644 --- a/examples/notebooks/Colorized_Grid_Data.ipynb +++ b/examples/notebooks/Colorized_Grid_Data.ipynb @@ -96,7 +96,7 @@ } ], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"grid\")\n", "request.setLocationNames(\"RAP13\")\n", diff --git a/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb b/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb index ffe6de8..9c4dd53 100644 --- a/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb +++ b/examples/notebooks/Forecast_Model_Vertical_Sounding.ipynb @@ -93,7 +93,7 @@ "metadata": {}, "outputs": [], "source": [ - "server = 'edex-beta.unidata.ucar.edu'\n", + "server = 'edex-cloud.unidata.ucar.edu'\n", "DataAccessLayer.changeEDEXHost(server)" ] }, diff --git a/examples/notebooks/GOES_CIRA_Product_Writer.ipynb b/examples/notebooks/GOES_CIRA_Product_Writer.ipynb index 668796a..92d2ac7 100644 --- a/examples/notebooks/GOES_CIRA_Product_Writer.ipynb +++ b/examples/notebooks/GOES_CIRA_Product_Writer.ipynb @@ -94,7 +94,7 @@ "outputs": [], "source": [ "# Create an EDEX data request\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"satellite\")" ] diff --git a/examples/notebooks/Grid_Levels_and_Parameters.ipynb b/examples/notebooks/Grid_Levels_and_Parameters.ipynb index 16e3767..9d76d1b 100644 --- a/examples/notebooks/Grid_Levels_and_Parameters.ipynb +++ b/examples/notebooks/Grid_Levels_and_Parameters.ipynb @@ -82,7 +82,7 @@ "outputs": [], "source": [ "# Unidata's cloud EDEX instance is used in this example\n", - "edex_url = \"edex-beta.unidata.ucar.edu\"\n", + "edex_url = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edex_url)" ] }, diff --git a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb index 7e93163..9e8f3a8 100644 --- a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb +++ b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb @@ -140,7 +140,7 @@ "outputs": [], "source": [ "# EDEX Request\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)\n", "request = DataAccessLayer.newDataRequest(\"obs\")\n", "\n", diff --git a/examples/notebooks/Map_Resources_and_Topography.ipynb b/examples/notebooks/Map_Resources_and_Topography.ipynb index ff18208..822ac45 100644 --- a/examples/notebooks/Map_Resources_and_Topography.ipynb +++ b/examples/notebooks/Map_Resources_and_Topography.ipynb @@ -91,7 +91,7 @@ "outputs": [], "source": [ "# Server, Data Request Type, and Database Table\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest('maps')" ] }, @@ -658,7 +658,7 @@ "\n", "* This notebook requires: **python-awips, numpy, matplotplib, cartopy, shapely**\n", "* Use datatype **maps** and **addIdentifier('table', <postgres maps schema>)** to define the map table:\n", - " DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + " DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", " request = DataAccessLayer.newDataRequest('maps')\n", " request.addIdentifier('table', 'mapdata.county')\n", "* Use **request.setLocationNames()** and **request.addIdentifier()** to spatially filter a map resource. In the example below, WFO ID **BOU** (Boulder, Colorado) is used to query counties within the BOU county watch area (CWA) \n", diff --git a/examples/notebooks/Model_Sounding_Data.ipynb b/examples/notebooks/Model_Sounding_Data.ipynb index e6b87e7..974c330 100644 --- a/examples/notebooks/Model_Sounding_Data.ipynb +++ b/examples/notebooks/Model_Sounding_Data.ipynb @@ -91,7 +91,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"modelsounding\")\n", "forecastModel = \"GFS\"\n", "request.addIdentifier(\"reportType\", forecastModel)\n", diff --git a/examples/notebooks/NEXRAD_Level3_Radar.ipynb b/examples/notebooks/NEXRAD_Level3_Radar.ipynb index 0eca71b..3e94ee8 100644 --- a/examples/notebooks/NEXRAD_Level3_Radar.ipynb +++ b/examples/notebooks/NEXRAD_Level3_Radar.ipynb @@ -89,7 +89,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"radar\")" ] }, diff --git a/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb b/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb index a816b6f..6ca20d7 100644 --- a/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb +++ b/examples/notebooks/Precip_Accumulation_Region_of_Interest.ipynb @@ -118,7 +118,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest(\"grid\", envelope=conus_envelope)" ] }, diff --git a/examples/notebooks/Regional_Surface_Obs_Plot.ipynb b/examples/notebooks/Regional_Surface_Obs_Plot.ipynb index 0ff2bad..42fb02e 100644 --- a/examples/notebooks/Regional_Surface_Obs_Plot.ipynb +++ b/examples/notebooks/Regional_Surface_Obs_Plot.ipynb @@ -307,7 +307,7 @@ "outputs": [], "source": [ "# EDEX connection\n", - "edexServer = \"edex-beta.unidata.ucar.edu\"\n", + "edexServer = \"edex-cloud.unidata.ucar.edu\"\n", "DataAccessLayer.changeEDEXHost(edexServer)" ] }, diff --git a/examples/notebooks/Satellite_Imagery.ipynb b/examples/notebooks/Satellite_Imagery.ipynb index 4659abd..1fece58 100644 --- a/examples/notebooks/Satellite_Imagery.ipynb +++ b/examples/notebooks/Satellite_Imagery.ipynb @@ -92,7 +92,7 @@ "outputs": [], "source": [ "# Create an EDEX data request\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"satellite\")" ] diff --git a/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb b/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb index ba213ec..f9971f1 100644 --- a/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb +++ b/examples/notebooks/Upper_Air_BUFR_Soundings.ipynb @@ -95,7 +95,7 @@ "outputs": [], "source": [ "# Set the edex server\n", - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "\n", "# Set data type\n", diff --git a/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb b/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb index 95acb5a..ef0d37a 100644 --- a/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb +++ b/examples/notebooks/Watch_Warning_and_Advisory_Plotting.ipynb @@ -206,7 +206,7 @@ "metadata": {}, "outputs": [], "source": [ - "DataAccessLayer.changeEDEXHost(\"edex-beta.unidata.ucar.edu\")\n", + "DataAccessLayer.changeEDEXHost(\"edex-cloud.unidata.ucar.edu\")\n", "request = DataAccessLayer.newDataRequest()\n", "request.setDatatype(\"warning\")\n", "params = [\"phensig\", \"sig\"]\n",