From c8a7a05e806ec6ef024118ce3adc7332eb9a61c3 Mon Sep 17 00:00:00 2001 From: A Nilsen <ban@nibio.no> Date: Fri, 28 Apr 2023 13:14:18 +0000 Subject: [PATCH] Inkludert en manglende kombinasjon av prosjektvalg --- get_nib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/get_nib.py b/get_nib.py index 06b7a86..7b8c7f5 100644 --- a/get_nib.py +++ b/get_nib.py @@ -663,6 +663,8 @@ class getnib: param ='{Filter:"ortofototype in (1,2,3,4,5,8,9)",Coordinates:"'+coords+'",InputWKID:'+str(crs_proj_int)+',StopOnCover:false}' if of and sat and not ir: param = '{Filter:"ortofototype in (1,2,3,4,5,6,8,9)",Coordinates:"'+coords+'",InputWKID:'+str(crs_proj_int)+',StopOnCover:false}' + if of and ir and not sat: + param = '{Filter:"ortofototype in (1,2,3,4,5,6,7,9)",Coordinates:"'+coords+'",InputWKID:'+str(crs_proj_int)+',StopOnCover:false}' if of and sat and ir: param = '{Filter:"ortofototype in (1,2,3,4,5,6,7,8,9)",Coordinates:"'+coords+'",InputWKID:'+str(crs_proj_int)+',StopOnCover:false}' if sat and not of and not ir: -- GitLab