ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

LAS Dataset properties

  • Zusammenfassung
  • Eigenschaften
  • Codebeispiel

Zusammenfassung

The Describe function returns the following properties for LAS dataset files. File Properties and Dataset Properties are also supported.

A LAS Dataset returns a dataType of "LasDataset".

Eigenschaften

EigenschaftErklärungDatentyp
constraintCount
(Nur lesen)

The number of surface constraint features referenced by the LAS dataset.

Long
fileCount
(Nur lesen)

The number of LAS files referenced by the LAS dataset.

Long
hasStatistics
(Nur lesen)

Indicates if statistics had been calculated for the LAS files referenced by the LAS dataset.

Boolean
needsUpdateStatistics
(Nur lesen)

Indicates if statistics are out-of-date or had not been calculated. Returns false if statistics are up-to-date.

Boolean
pointCount
(Nur lesen)

The number of data points in the LAS files referenced by the LAS dataset.

Long
usesRelativePath
(Nur lesen)

Indicates if the LAS dataset references its data elements using relative paths.

Boolean

Codebeispiel

LAS Dataset properties example (stand-alone script)

The following script demonstrates the application of LAS dataset properties.

import arcpy

desc = arcpy.Describe(r'E:\GIS_Data\lidar\test_bmore.lasd')

if desc.usesRelativePath: 
    pathType = 'Relative'
else: pathType = 'Absolute'

# Determine state of statistics
if desc.needsUpdateStatistics:
    if desc.hasStatistics:
        statistics = 'Out-of-date'
    else:
        statistics = 'Missing'
else:
    statistics = 'Current'


print 'LAS Dataset Name: {0} \r'\
      'Point Count: {1} \r'\
      'Surface Constraint Count: {2} \r'\
      'Path Type: {3} \r'\
      'Statistics Status: {4}'.format(desc.basename, desc.pointCount, 
                                      desc.constraintCount, pathType,
                                      statistics)

ArcGIS Desktop

  • Startseite
  • Dokumentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

Über Esri

  • Über uns
  • Karriere
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
Copyright © 2021 Esri. | Datenschutz | Rechtliches