Skip To Content

Hinzufügen und Konfigurieren des Schrittes "Datenqualität bewerten"

Mit dem Schritt "Datenqualität bewerten" können Sie die Qualität der in Aufträgen verwendeten Daten mithilfe der Operation Bewerten des ArcGIS-Validierungsservice bewerten. Wenn der Schritt ausgeführt wird, bewertet er die mit der im Workflow-Diagramm konfigurierten Datenquelle verknüpften Regeln und identifiziert Fehler.

When the step is run, the following actions can be performed:

  • The step can be cancelled by clicking Cancel.
Hinweis:

Wenn der Schritt nicht optional ist, muss er ausgeführt werden, bevor er abgeschlossen werden kann.

Konfigurieren des Schrittes

To configure the step, do the following:

  1. Create or edit a workflow diagram to access the Step Library panel.
  2. Ziehen Sie Datenqualität bewerten aus dem Fenster Schrittbibliothek auf den Verbindungspfeil eines Schrittes auf der Workflow-Zeichenfläche.

    The Step Details panel appears.

  3. Provide a name for the step in the Step Name text box.
  4. Aktivieren Sie im Abschnitt Typ der Bewertungsmethode das Kontrollkästchen für die Art der Bewertungsmethode, die Sie ausführen möchten.
    • Validierungsregeln: Aktivieren Sie basierend auf bestimmten Anforderungen oder Beschränkungen Funktionen in einem Dataset.
    • Berechnungsregeln: Geben Sie automatisch Attributkonfigurationen für Funktionen ein.
    • Topologieregeln: Vergleichen Sie die Feature-Geometrie mit allen in der Quell-Geodatabase definierten Topologieregeln.
  5. Wählen Sie im Abschnitt Datenquellen eine der folgenden Optionen aus:
    • Alle: Wählen Sie diese Option aus, um alle in dem Workflow-Diagramm konfigurierten Datenquellen zu bewerten.
    • Quellen auswählen: Wählen Sie diese Option aus, und klicken Sie auf Datenquelle hinzufügen, um die Datenquellen auszuwählen, die Sie bewerten möchten.
      Tipp:

      Um eine Datenquelle zu löschen, klicken Sie auf die Schaltfläche Löschen Delete.

  6. Wählen Sie im Abschnitt Auszuwertende Daten eine der folgenden Optionen aus:
    • Auftragsposition: Wählen Sie diese Option aus, um Daten nur an der definierten Auftragsposition auszuwerten.
    • Gesamtes Dataset: Wählen Sie diese Option aus, um alle Daten in dem Dataset auszuwerten.
  7. Wählen Sie im Abschnitt Version eine der folgenden Optionen aus:
    • Auftragsversion: Werten Sie die auftragsspezifische Version der Daten aus.
    • Standard: Werten Sie die Standardversion der Daten aus.
  8. Optional deaktivieren Sie das Kontrollkästchen Als asynchronen Auftrag ausführen, um die Auswertungen sequenziell auszuführen.
  9. Optional aktivieren Sie das Kontrollkästchen Nur bei Versionsänderungen ausführen, um die Auswertung nur bei Änderungen auszuführen, die an der auftragsspezifischen Version der Daten vorgenommen wurden.
  10. Click the Options tab.
  11. Configure Step Options as necessary.
    • Manual—Run the step manually.
      • Optional—Allow the step to be finished without being run.
    • Automatic—Run the step as soon as it becomes active.
      Hinweis:

      If your workflow diagram is configured to automatically run a sequence of steps that includes the Evaluate Data Quality or the Run GP Service step, steps that attempt to run after the user token that started the sequence of steps expires will not run automatically. You must have a license for the ArcGIS Workflow Manager Server Advanced role to continue running the additional automated steps without manual intervention.

    • Run on a Schedule—Run the step according to a schedule you set.

      Learn more about scheduling options

  12. Optionally, provide help text for the step in the Step Help text box.

    You can also use the following example to display a dynamic value using ArcGIS Arcade expressions:

    'For further assistance, please contact ' + jobCreator($job) + '.'
  13. Optionally, click the Style tab to change the shape and color of the step.
  14. Optionally, click the About tab and provide a description for the step in the Step Description text box.
    Hinweis:

    The About tab also contains the step's ID that can be used with dynamic job properties to obtain a step's output.

Return value

When the step is completed, its return value is stored to indicate the result of the step. The return value can be immediately evaluated using paths to determine the next steps in the workflow. You can also retrieve the return value for completed steps throughout the workflow using ArcGIS Arcade expressions. The following table lists the step's return values:

Return valuesDescription

S000001

The step completed successfully.

F000001

The step failed to complete successfully.

Ausgabewert

When the step is completed, its output value is stored and can be used to determine the path the workflow follows or be used as inputs for other steps throughout the workflow. The following table lists the step's output values:

AusgabeBeschreibungSyntax für ArcGIS Arcade-Ausdruck

moment

Gibt das Datum und die Uhrzeit der Antwort zurück.

jobOutputValue($job, '<step_id>', 'moment')

errorsIdentified

Gibt die Anzahl der identifizierten Fehler zurück.

jobOutputValue($job, '<step_id>', 'errorsIdentified')

success

Gibt true zurück, wenn der Schritt erfolgreich abgeschlossen wurde, oder false, wenn der Schritt nicht erfolgreich abgeschlossen wurde.

jobOutputValue($job, '<step_id>', 'success')

Verwandte Themen