Skip to content

Commit

Permalink
clean a path of config file
Browse files Browse the repository at this point in the history
  • Loading branch information
agrouaze committed Dec 2, 2024
1 parent 986fbe9 commit 6890b46
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/examples/streaks-display.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
"outputs": [],
"source": [
"# test on an dummy GRD IW product\n",
"import xsar\n",
"import xsar,os\n",
"import grdwindinversion \n",
"filename = xsar.get_test_file('S1A_IW_GRDH_1SDV_20170907T103020_20170907T103045_018268_01EB76_Z010.SAFE')\n",
"outdir = \"/tmp/\"\n",
"config_path = \"/home/vincelhx/Documents/autoentreprise/IFREMER/libs/fork_grdwi/grdwindinversion/grdwindinversion/config_prod_streaks.yaml\"\n",
"config_path = os.path.join(os.path.dirname(grdwindinversion.__file__),'config_prod_streaks.yaml')\n",
"assert os.path.exists(config_path)\n",
"overwrite = True\n",
"resolution = '1000m'"
]
Expand Down Expand Up @@ -300,7 +302,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "env_xsar",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -314,9 +316,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.15"
"version": "3.11.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}

0 comments on commit 6890b46

Please sign in to comment.