|
33 | 33 | "import matplotlib.pyplot as plt\n", |
34 | 34 | "# verify mintpy install\n", |
35 | 35 | "try:\n", |
36 | | - " #from mintpy.objects.insar_vs_gps import plot_insar_vs_gps_scatter\n", |
37 | | - " #from mintpy.unwrap_error_phase_closure import plot_num_triplet_with_nonzero_integer_ambiguity\n", |
38 | | - " #from mintpy import workflow, view, tsview, plot_network, plot_transection, plot_coherence_matrix\n", |
39 | | - " from mintpy import view, tsview\n", |
| 36 | + " from mintpy import workflow, view, tsview\n", |
40 | 37 | "except ImportError:\n", |
41 | 38 | " raise ImportError(\"Can not import mintpy!\")\n", |
42 | 39 | "\n", |
|
146 | 143 | " # Check if a stage file from S3 already exist, if not try and download it\n", |
147 | 144 | " zip_file = os.path.join(hyp3_dir, zip_file_name)\n", |
148 | 145 | " if not os.path.isfile(zip_file):\n", |
149 | | - " !wget https://jzhu-hyp3-dev.s3.us-west-2.amazonaws.com/hyp3-mintpy/{zip_file_name}\n", |
| 146 | + " # Download the staged dataset from AWS S3 bucket or from [Zenodo](https://zenodo.org/record/5502403).", |
150 | 147 | " #!aws s3 cp s3://jzhu-hyp3-dev/hyp3-mintpy-example/{zip_file_name} {zip_file_name}\n", |
| 148 | + " !wget https://jzhu-hyp3-dev.s3.us-west-2.amazonaws.com/hyp3-mintpy/{zip_file_name}\n", |
151 | 149 | " # verify if download was succesfull\n", |
152 | 150 | " if os.path.isfile(zip_file_name):\n", |
153 | 151 | " import zipfile, glob\n", |
|
0 commit comments