|
704 | 704 | " print(f'Skipping - HOSS is not configured for this test in {harmony_environment}.')"
|
705 | 705 | ]
|
706 | 706 | },
|
| 707 | + { |
| 708 | + "cell_type": "markdown", |
| 709 | + "id": "269213d1", |
| 710 | + "metadata": {}, |
| 711 | + "source": [ |
| 712 | + "### HOSS bounding box spatial subset: <a id=\"spatial-subset\"></a>\n", |
| 713 | + "\n", |
| 714 | + "This request will limit the spatial extent of the returned output. This request will be fulfilled differently depending on the UMM-S record associated with the data.\n", |
| 715 | + "\n", |
| 716 | + "SPL3FTP_E is associated with SDS/HOSS Projection-gridded service and will call:\n", |
| 717 | + " * `query-cmr` to filter granules to those with matching spatial coverage.\n", |
| 718 | + " * `harmony-opendap-subsetter` to perform HOSS operations and extract a rectangular portion of the longitude latitude grid. This will match the bounding box.\n", |
| 719 | + " * `maskfill-harmony` to fill any pixels in the rectangular array segment.\n", |
| 720 | + "\n", |
| 721 | + "TODO: Add Environment.PROD once NSIC updates SPL3FTP_E in the production environment.\n" |
| 722 | + ] |
| 723 | + }, |
| 724 | + { |
| 725 | + "cell_type": "code", |
| 726 | + "execution_count": null, |
| 727 | + "id": "c3880303", |
| 728 | + "metadata": {}, |
| 729 | + "outputs": [], |
| 730 | + "source": [ |
| 731 | + "hoss_bbox_spatial_non_prod_information = {\n", |
| 732 | + " 'collection': Collection(id='C1268616149-EEDTEST'),\n", |
| 733 | + " 'granule_id': 'G1268616175-EEDTEST',\n", |
| 734 | + "}\n", |
| 735 | + "\n", |
| 736 | + "hoss_bbox_spatial_prod_information = {\n", |
| 737 | + " 'collection': Collection(id='C2776463920-NSIDC_ECS'),\n", |
| 738 | + " 'granule_id': 'G2903366136-NSIDC_ECS',\n", |
| 739 | + "}\n", |
| 740 | + "\n", |
| 741 | + "hoss_bbox_spatial_env = {\n", |
| 742 | + " Environment.LOCAL: hoss_bbox_spatial_non_prod_information,\n", |
| 743 | + " Environment.SIT: hoss_bbox_spatial_non_prod_information,\n", |
| 744 | + " Environment.UAT: hoss_bbox_spatial_non_prod_information,\n", |
| 745 | + "}\n", |
| 746 | + "\n", |
| 747 | + "if harmony_environment in hoss_bbox_spatial_env:\n", |
| 748 | + " hoss_bbox_spatial_info = hoss_bbox_spatial_env[harmony_environment]\n", |
| 749 | + "else:\n", |
| 750 | + " hoss_bbox_spatial_info = None" |
| 751 | + ] |
| 752 | + }, |
| 753 | + { |
| 754 | + "cell_type": "code", |
| 755 | + "execution_count": null, |
| 756 | + "id": "0c3f8a10", |
| 757 | + "metadata": {}, |
| 758 | + "outputs": [], |
| 759 | + "source": [ |
| 760 | + "if test_is_configured(hoss_bbox_spatial_info, 'collection'):\n", |
| 761 | + " hoss_bbox_spatial_file_name = 'hoss_bbox_spatial.nc4'\n", |
| 762 | + " hoss_bbox_spatial_bbox = BBox(w=-70, s=60, e=-10, n=85)\n", |
| 763 | + " hoss_bbox_spatial_request = Request(\n", |
| 764 | + " collection=hoss_bbox_spatial_info['collection'],\n", |
| 765 | + " granule_id=[hoss_bbox_spatial_info['granule_id']],\n", |
| 766 | + " variables=[\n", |
| 767 | + " 'Freeze_Thaw_Retrieval_Data_Global/altitude_dem',\n", |
| 768 | + " 'Freeze_Thaw_Retrieval_Data_Global/transition_state_flag',\n", |
| 769 | + " 'Freeze_Thaw_Retrieval_Data_Polar/altitude_dem',\n", |
| 770 | + " 'Freeze_Thaw_Retrieval_Data_Polar/transition_state_flag',\n", |
| 771 | + " ],\n", |
| 772 | + " spatial=hoss_bbox_spatial_bbox,\n", |
| 773 | + " )\n", |
| 774 | + "\n", |
| 775 | + " submit_and_download(\n", |
| 776 | + " harmony_client, hoss_bbox_spatial_request, hoss_bbox_spatial_file_name\n", |
| 777 | + " )\n", |
| 778 | + " assert exists(\n", |
| 779 | + " hoss_bbox_spatial_file_name\n", |
| 780 | + " ), 'Unsuccessful HOSS bounding box spatial request.'\n", |
| 781 | + "\n", |
| 782 | + " compare_results_to_reference_file(\n", |
| 783 | + " hoss_bbox_spatial_file_name,\n", |
| 784 | + " 'reference_files/hoss_bbox_spatial_reference.nc4',\n", |
| 785 | + " '/',\n", |
| 786 | + " )\n", |
| 787 | + "\n", |
| 788 | + " print_success('HOSS bounding box spatial request.')\n", |
| 789 | + "else:\n", |
| 790 | + " print(f'Skipping - HOSS is not configured for this test in {harmony_environment}.')" |
| 791 | + ] |
| 792 | + }, |
| 793 | + { |
| 794 | + "cell_type": "markdown", |
| 795 | + "id": "f25e7fb2", |
| 796 | + "metadata": {}, |
| 797 | + "source": [ |
| 798 | + "### HOSS polygon spatial subset for 3D variables: <a id=\"spatial-subset\"></a>\n", |
| 799 | + "\n", |
| 800 | + "A polygon spatial subset for 3D variables:\n", |
| 801 | + " This request for a polygon subset of 3D variables in a SPL3SMP granule will be fulfilled using three steps. This can be observed via https://harmony.uat.earthdata.nasa.gov/workflow-ui endpoint of Harmony.\n", |
| 802 | + "\n", |
| 803 | + "* `query-cmr` to filter granules to those with matching spatial coverage.\n", |
| 804 | + "* `harmony-opendap-subsetter` to perform HOSS operations and extract a rectangular portion of the longitude latitude grid. This will match the bounding box.\n", |
| 805 | + "* `sds/maskfill-harmony` to fill any pixels in the rectangular array segment, but outside the GeoJSON shape.\n", |
| 806 | + "\n", |
| 807 | + "TODO: Add Environment.PROD once NSIC updates SPL3SMP in the production environment.\n" |
| 808 | + ] |
| 809 | + }, |
| 810 | + { |
| 811 | + "cell_type": "code", |
| 812 | + "execution_count": null, |
| 813 | + "id": "0aacd181", |
| 814 | + "metadata": {}, |
| 815 | + "outputs": [], |
| 816 | + "source": [ |
| 817 | + "hoss_shape_file_polygon_spatial_3d_non_prod_information = {\n", |
| 818 | + " 'collection': Collection(id='C1268452378-EEDTEST'),\n", |
| 819 | + " 'granule_id': 'G1268452388-EEDTEST',\n", |
| 820 | + " 'shape_file_path': 'usa-mainland.geojson',\n", |
| 821 | + "}\n", |
| 822 | + "\n", |
| 823 | + "hoss_shape_file_polygon_spatial_3d_prod_information = {\n", |
| 824 | + " 'collection': Collection(id='C2776463935-NSIDC_ECS'),\n", |
| 825 | + " 'granule_id': 'G2903715759-NSIDC_ECS',\n", |
| 826 | + "}\n", |
| 827 | + "\n", |
| 828 | + "hoss_shape_file_polygon_spatial_3d_env = {\n", |
| 829 | + " Environment.LOCAL: hoss_shape_file_polygon_spatial_3d_non_prod_information,\n", |
| 830 | + " Environment.SIT: hoss_shape_file_polygon_spatial_3d_non_prod_information,\n", |
| 831 | + " Environment.UAT: hoss_shape_file_polygon_spatial_3d_non_prod_information,\n", |
| 832 | + "}\n", |
| 833 | + "\n", |
| 834 | + "if harmony_environment in hoss_shape_file_polygon_spatial_3d_env:\n", |
| 835 | + " hoss_shape_file_polygon_spatial_3d_info = hoss_shape_file_polygon_spatial_3d_env[\n", |
| 836 | + " harmony_environment\n", |
| 837 | + " ]\n", |
| 838 | + "else:\n", |
| 839 | + " hoss_shape_file_polygon_spatial_3d_info = None" |
| 840 | + ] |
| 841 | + }, |
| 842 | + { |
| 843 | + "cell_type": "code", |
| 844 | + "execution_count": null, |
| 845 | + "id": "dfddef43", |
| 846 | + "metadata": {}, |
| 847 | + "outputs": [], |
| 848 | + "source": [ |
| 849 | + "if test_is_configured(hoss_shape_file_polygon_spatial_3d_info, 'collection'):\n", |
| 850 | + " hoss_shape_file_polygon_spatial_3d_file_name = 'hoss_shape_file_subset_3d.nc4'\n", |
| 851 | + " hoss_shape_file_polygon_spatial_3d_request = Request(\n", |
| 852 | + " collection=hoss_shape_file_polygon_spatial_3d_info['collection'],\n", |
| 853 | + " granule_id=hoss_shape_file_polygon_spatial_3d_info['granule_id'],\n", |
| 854 | + " shape=hoss_shape_file_polygon_spatial_3d_info['shape_file_path'],\n", |
| 855 | + " variables=[\n", |
| 856 | + " 'Soil_Moisture_Retrieval_Data_AM/landcover_class',\n", |
| 857 | + " 'Soil_Moisture_Retrieval_Data_PM/landcover_class_pm',\n", |
| 858 | + " ],\n", |
| 859 | + " )\n", |
| 860 | + "\n", |
| 861 | + " submit_and_download(\n", |
| 862 | + " harmony_client,\n", |
| 863 | + " hoss_shape_file_polygon_spatial_3d_request,\n", |
| 864 | + " hoss_shape_file_polygon_spatial_3d_file_name,\n", |
| 865 | + " )\n", |
| 866 | + "\n", |
| 867 | + " assert exists(\n", |
| 868 | + " hoss_shape_file_polygon_spatial_3d_file_name\n", |
| 869 | + " ), 'Unsuccessful HOSS polygon spatial subset for 3D variables request.'\n", |
| 870 | + "\n", |
| 871 | + " compare_results_to_reference_file(\n", |
| 872 | + " hoss_shape_file_polygon_spatial_3d_file_name,\n", |
| 873 | + " 'reference_files/hoss_shape_file_subset_3d_reference.nc4',\n", |
| 874 | + " '/',\n", |
| 875 | + " )\n", |
| 876 | + "\n", |
| 877 | + " print_success('HOSS polygon spatial subset for 3D variables request.')\n", |
| 878 | + "else:\n", |
| 879 | + " print(f'Skipping - HOSS is not configured for this test in {harmony_environment}.')" |
| 880 | + ] |
| 881 | + }, |
| 882 | + { |
| 883 | + "cell_type": "markdown", |
| 884 | + "id": "2a33fb2e", |
| 885 | + "metadata": {}, |
| 886 | + "source": [ |
| 887 | + "### HOSS polygon spatial subset: <a id=\"spatial-subset\"></a>\n", |
| 888 | + "\n", |
| 889 | + "This request will limit the spatial extent of the returned output. This request for a polygon subset in a SPL3SMP_E granule using three steps. This can be observed via https://harmony.uat.earthdata.nasa.gov/workflow-ui endpoint of Harmony.\n", |
| 890 | + "\n", |
| 891 | + "* `query-cmr` to filter granules to those with matching spatial coverage.\n", |
| 892 | + "* `harmony-opendap-subsetter` to perform HOSS operations and extract a rectangular portion of the longitude latitude grid. This will match the bounding box.\n", |
| 893 | + "* `sds/maskfill-harmony` to fill any pixels in the rectangular array segment, but outside the GeoJSON shape.\n", |
| 894 | + "\n", |
| 895 | + "TODO: Add Environment.PROD once NSIC updates SPL3SMP_E in the production environment.\n" |
| 896 | + ] |
| 897 | + }, |
| 898 | + { |
| 899 | + "cell_type": "code", |
| 900 | + "execution_count": null, |
| 901 | + "id": "fe62d797", |
| 902 | + "metadata": {}, |
| 903 | + "outputs": [], |
| 904 | + "source": [ |
| 905 | + "hoss_shape_file_polygon_spatial_non_prod_information = {\n", |
| 906 | + " 'collection': Collection(id='C1268399578-EEDTEST'),\n", |
| 907 | + " 'granule_id': 'G1268399648-EEDTEST',\n", |
| 908 | + " 'shape_file_path': 'usa-mainland.geojson',\n", |
| 909 | + "}\n", |
| 910 | + "\n", |
| 911 | + "hoss_shape_file_polygon_spatial_prod_information = {\n", |
| 912 | + " 'collection': Collection(id='C2776463943-NSIDC_ECS'),\n", |
| 913 | + " 'granule_id': 'G2906217596-NSIDC_ECS',\n", |
| 914 | + "}\n", |
| 915 | + "\n", |
| 916 | + "hoss_shape_file_polygon_spatial_env = {\n", |
| 917 | + " Environment.LOCAL: hoss_shape_file_polygon_spatial_non_prod_information,\n", |
| 918 | + " Environment.SIT: hoss_shape_file_polygon_spatial_non_prod_information,\n", |
| 919 | + " Environment.UAT: hoss_shape_file_polygon_spatial_non_prod_information,\n", |
| 920 | + "}\n", |
| 921 | + "\n", |
| 922 | + "if harmony_environment in hoss_shape_file_polygon_spatial_env:\n", |
| 923 | + " hoss_shape_file_polygon_spatial_info = hoss_shape_file_polygon_spatial_env[\n", |
| 924 | + " harmony_environment\n", |
| 925 | + " ]\n", |
| 926 | + "else:\n", |
| 927 | + " hoss_shape_file_polygon_spatial_info = None" |
| 928 | + ] |
| 929 | + }, |
| 930 | + { |
| 931 | + "cell_type": "code", |
| 932 | + "execution_count": null, |
| 933 | + "id": "bf563824", |
| 934 | + "metadata": {}, |
| 935 | + "outputs": [], |
| 936 | + "source": [ |
| 937 | + "if test_is_configured(hoss_shape_file_polygon_spatial_info, 'collection'):\n", |
| 938 | + " hoss_shape_file_polygon_spatial_file_name = 'hoss_shape_file_subset.nc4'\n", |
| 939 | + " hoss_shape_file_polygon_spatial_request = Request(\n", |
| 940 | + " collection=hoss_shape_file_polygon_spatial_info['collection'],\n", |
| 941 | + " granule_id=hoss_shape_file_polygon_spatial_info['granule_id'],\n", |
| 942 | + " shape=hoss_shape_file_polygon_spatial_info['shape_file_path'],\n", |
| 943 | + " variables=[\n", |
| 944 | + " 'Soil_Moisture_Retrieval_Data_AM/surface_flag',\n", |
| 945 | + " 'Soil_Moisture_Retrieval_Data_PM/surface_flag_pm',\n", |
| 946 | + " 'Soil_Moisture_Retrieval_Data_Polar_AM/surface_flag',\n", |
| 947 | + " 'Soil_Moisture_Retrieval_Data_Polar_PM/surface_flag_pm',\n", |
| 948 | + " ],\n", |
| 949 | + " )\n", |
| 950 | + "\n", |
| 951 | + " submit_and_download(\n", |
| 952 | + " harmony_client,\n", |
| 953 | + " hoss_shape_file_polygon_spatial_request,\n", |
| 954 | + " hoss_shape_file_polygon_spatial_file_name,\n", |
| 955 | + " )\n", |
| 956 | + "\n", |
| 957 | + " assert exists(\n", |
| 958 | + " hoss_shape_file_polygon_spatial_file_name\n", |
| 959 | + " ), 'Unsuccessful HOSS polygon spatial subset request.'\n", |
| 960 | + "\n", |
| 961 | + " compare_results_to_reference_file(\n", |
| 962 | + " hoss_shape_file_polygon_spatial_file_name,\n", |
| 963 | + " 'reference_files/hoss_shape_file_subset_reference.nc4',\n", |
| 964 | + " '/',\n", |
| 965 | + " )\n", |
| 966 | + "\n", |
| 967 | + " print_success('HOSS polygon spatial subset request.')\n", |
| 968 | + "else:\n", |
| 969 | + " print(f'Skipping - HOSS is not configured for this test in {harmony_environment}.')" |
| 970 | + ] |
| 971 | + }, |
707 | 972 | {
|
708 | 973 | "cell_type": "markdown",
|
709 | 974 | "id": "ca88eb71-2526-4b34-8ff7-441f869244e0",
|
|
740 | 1005 | "name": "python",
|
741 | 1006 | "nbconvert_exporter": "python",
|
742 | 1007 | "pygments_lexer": "ipython3",
|
743 |
| - "version": "3.9.13" |
| 1008 | + "version": "3.10.16" |
744 | 1009 | },
|
745 | 1010 | "name": "SDS_Regression.ipynb"
|
746 | 1011 | },
|
|
0 commit comments