You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -719,15 +721,34 @@ function NewProject(props: Props) {
719
721
<InputSection
720
722
heading="Mapillary Image Filters"
721
723
>
724
+
<div>time range input</div>
722
725
<NumberInput
723
726
name={'organizationId'asconst}
724
727
value={value?.organizationId}
725
728
onChange={setFieldValue}
726
729
error={error?.organizationId}
727
730
label="Mapillary Organization ID"
728
-
hint="Provide a valid Mapillary organization ID to filter for images belonging to a specific organization."
731
+
hint="Provide a valid Mapillary organization ID to filter for images belonging to a specific organization. Empty indicates that no filter is set on organization."
729
732
disabled={submissionPending||projectTypeEmpty}
730
733
/>
734
+
<divclassName={styles.inputGroup}>
735
+
<NumberInput
736
+
name={'samplingThreshold'asconst}
737
+
value={value?.samplingThreshold}
738
+
onChange={setFieldValue}
739
+
error={error?.samplingThreshold}
740
+
label="Image Sampling Threshold"
741
+
hint="What should be the minimum distance (in km) between images on the same Mapillary sequence? Empty indicates that all images on each sequence are used."
0 commit comments