Γερμανικά » Αγγλικά

Μεταφράσεις για „Textdatei“ στο λεξικό Γερμανικά » Αγγλικά (Μετάβαση προς Αγγλικά » Γερμανικά)

Text·da·tei ΟΥΣ θηλ Η/Υ

Παραδείγματα από το διαδίκτυο (μη ελεγχόμενα από το λεξικογραφικό τμήμα)

Die Webseiten der Roland Berger Strategy Consultants verwenden an verschiedenen Stellen sogenannte Cookies.

Das sind kleine Textdateien, die auf Ihrem Rechner abgelegt werden und die Ihr Browser speichert.

Cookies richten auf Ihrem Rechner keinen Schaden an und enthalten keine Viren.

www.rolandberger.de

in different places.

These are small text files which are downloaded onto your computer and are saved in your browser.

Cookies do not harm your computer, and do not contain viruses.

www.rolandberger.de

Die aktuelle Version der PowerUP-Emulation ist V0.6 und sie arbeitet nur mit WarpUP 4 ( powerpc.library V15 ) zusammen.

Es wird dringend empfohlen, die entsprechenden Textdateien im Verzeichnis ' PowerUPEmu ' zu lesen, um die Software korrekt zum Funktionieren zu bringen und um sich auf die Einschraenkungen (vor allem betreffend Kompatibilitaet) aufmerksam zu machen.

www.haage-partner.de

The current version of the PowerUP emulation is V0.6 and it requires WarpUP 4 ( powerpc.library V15 ).

It is strongly recommended to read the corresponding text files in the directory ' PowerUPEmu ', to make the software working correctly and to get aware of all restrictions (mainly concerning compatibility) .

www.haage-partner.de

\ | pfctl -a goodguys -f -

Regeln können ebenfalls in eine Textdatei geschrieben und geladen werden:

# cat >> /etc/anchor-goodguys-www pass in proto tcp from 192.0.2.3 to any port 80 pass in proto tcp from 192.0.2.4 to any port { 80 443 } # pfctl -a goodguys -f /etc/anchor-goodguys-www

www.openbsd.org

\ | pfctl -a goodguys -f -

Rules can also be saved and loaded from a text file:

# cat >> /etc/anchor-goodguys-www pass in proto tcp from 192.0.2.3 to any port 80 pass in proto tcp from 192.0.2.4 to any port { 80 443 } # pfctl -a goodguys -f /etc/anchor-goodguys-www

www.openbsd.org

.

Tabellen können den Inhalt einer Textdatei enthalten, die aus einer Aufzählung von IP- oder Netzwerk-Adressen besteht:

table <spammers> persist file "/etc/spammers" block in on fxp0 from <spammers> to any

www.openbsd.org

angled brackets.

Tables can also be populated from text files containing a list of IP addresses and networks:

table <spammers> persist file "/etc/spammers" block in on fxp0 from <spammers> to any

www.openbsd.org

Wenn Sie die Ausgabe-Route-Feature-Class für die dynamische Segmentierung verwenden, empfiehlt es sich, einen Attributindex zu erstellen.

Wenn Features vom Prozess "Routen kalibrieren" verworfen werden, wird im temporären Dateipfad eine Textdatei erstellt, in der Informationen zu diesen Features gespeichert werden.

resources.arcgis.com

If you will be using the Output Route Feature Class for dynamic segmentation, it is recommended that you choose to have an attribute index created.

If any features are rejected by the Calibrate Routes process, a text file is created in the temporary file path to store information about those features.

resources.arcgis.com

Eine Datenbank ist eine Möglichkeit, um Informationen so zu lagern, dass die Informationen schnell abgerufen werden können, wenn diese benötigt werden.

Im Gegensatz zu Informationen, die z.B. auf einem Stück Papier geschrieben sind oder in einer Textdatei eingegeben worden sind, speichert eine Datenbank die Informationen in Tabellen, so dass jeder Eintrag einfach auf systematische und präzise Weise abgerufen werden kann.

Eine Datenbank enthält eine oder mehrere Datenbanktabellen, wovon jede eine Anzahl an Zellen beinhaltet, die in vertikale Spalten und horizontale Zeilen geteilt, sehr ähnlich einer Tabellenkalkulation.

www.one.com

A database is a way in which to store information, which ensures that the information can be quickly retrieved and used where it is needed.

Unlike information that is written on, e.g. a piece of paper or typed into a text file, a database saves the information in tables so each individual entry can be quickly retrieved in a systematic and precise way.

A database comprises one or more database tables, each of which contains a number of cells that are divided into columns and horizontal rows, much like in the same way as a spreadsheet.

www.one.com

Eine Zeile mit vier Werten wird als Von-, Bis-, Nach- und als indizierte Konturlinie behandelt.

Wenn beispielsweise ein Raster einen Minimalwert von 102 und einen Maximalwert von 500 hat, dann erzeugt eine Textdatei mit:

# contour values and ranges 122.75 485 500 5 12 4 100 99

resources.arcgis.com

A line with four values will treated as from, to, by, and indexed contours.

For example, if a raster has a minimum value of 102 and a maximum of 500, then a text file with:

# contour values and ranges 122.75 485 500 5 12 4 100 99

resources.arcgis.com

Sie müssen ggf. die Variablennamen anpassen, aber die Informationen werden so geschrieben, dass Sie sie ganz einfach kopieren und in Ihr Skript einfügen können.

Der folgende Codeblock kann im ArcMap Python-Fenster ausgeführt werden; er schreibt die Informationen über das aktuelle Seitenlayout in eine angegebene Textdatei.

import os # Create an output location variable outputDirectory = r"C:\temp" # Open a text file to append info to insetTxt = outputDirectory + r"\insetInfo.txt" FILE = open(insetTxt, "a") try: mxd = arcpy.mapping.MapDocument("... df = arcpy.mapping.ListDataFrame... "Inset*")[0] ddp = mxd.dataDrivenPages infoList = [] infoList.append("\n") # The following is information you would like to record # The text is written so it can be pasted directly into your script # This example assumes that 'pgIndex' is the variable for the current page id # and that 'dataFrame' is the variable for the data frame containing the inset map infoList.append("if (pgIndex == " + str(ddp.currentPageID) + "):\n") infoList.append("\tdataFram... = " + str(df.elementPositionX) + "\n") infoList.append("\tdataFram... = " + str(df.elementPositionY) + "\n") infoList.append("\tdataFram... = " + str(df.elementHeight) + "\n") infoList.append("\tdataFram... = " + str(df.elementWidth) + "\n") infoList.append("\tinsetExt... + str(ddp.currentPageID) + " = arcpy.Extent(" + str(df.extent.XMin) + ", " + str(df.extent.YMin) + ", " + str(df.extent.XMax) + ", " + str(df.extent.YMax) + ")" + "\n") infoList.append("\tdataFram... = insetExtent_" + str(ddp.currentPageID) + "\n") FILE.writelines(infoList) except: print "Writing to file failed" # Close the text file FILE.close()

resources.arcgis.com

You might have to adjust variable names, but the information will be written in such a way that you should be able to just copy and paste it into your script.

The following block of code can be run within the ArcMap Python window, and it will write the information about the current page layout to a specified text file.

import os # Create an output location variable outputDirectory = r"C:\temp" # Open a text file to append info to insetTxt = outputDirectory + r"\insetInfo.txt" FILE = open(insetTxt, "a") try: mxd = arcpy.mapping.MapDocument("... df = arcpy.mapping.ListDataFrame... "Inset*")[0] ddp = mxd.dataDrivenPages infoList = [] infoList.append("\n") # The following is information you would like to record # The text is written so it can be pasted directly into your script # This example assumes that 'pgIndex' is the variable for the current page id # and that 'dataFrame' is the variable for the data frame containing the inset map infoList.append("if (pgIndex == " + str(ddp.currentPageID) + "):\n") infoList.append("\tdataFram... = " + str(df.elementPositionX) + "\n") infoList.append("\tdataFram... = " + str(df.elementPositionY) + "\n") infoList.append("\tdataFram... = " + str(df.elementHeight) + "\n") infoList.append("\tdataFram... = " + str(df.elementWidth) + "\n") infoList.append("\tinsetExt... + str(ddp.currentPageID) + " = arcpy.Extent(" + str(df.extent.XMin) + ", " + str(df.extent.YMin) + ", " + str(df.extent.XMax) + ", " + str(df.extent.YMax) + ")" + "\n") infoList.append("\tdataFram... = insetExtent_" + str(ddp.currentPageID) + "\n") FILE.writelines(infoList) except: print "Writing to file failed" # Close the text file FILE.close()

resources.arcgis.com

Was sind Cookies ?

Cookies sind kleine Textdateien, die auf der Festplatte Ihres Computers gespeichert werden, wenn Sie bestimmte Websites besuchen.

www.philips.de

What are cookies ?

Cookies are small text files that are stored on your computer's hard disk when you visit certain websites.

www.philips.de

auf dem Computer des Nutzers abgelegt werden.

Ein Cookie ist eine Textdatei geringer Größe, die beim erneuten Besuch dieser Webseite eine Wiedererkennung und Anpassung an die Interessen des Nutzers ermöglicht Sollte ein Ablegen von Cookies nicht gewünscht sein, so kann diese Funktion im Webbrowser deaktiviert werden.

In diesem Fall können jedoch bestimmte Funktionen dieser Website nicht mehr genutzt werden.

www.adressen-riek.de

s computer.

A cookie is a text file smaller size that allows recognition and adaptation to the interests of the user when re-visiting this website If one of these cookies is not desired, this function can be turned off in your web browser.

In this case, however, certain features of this website can not be used.

www.adressen-riek.de

Θέλετε να προσθέσετε μια λέξη, φράση ή μετάφραση?

Καταχωρίστε νέο λήμμα.

"Textdatei" στα μονόγλωσσα Γερμανικά λεξικά


Σελίδα στα Deutsch | Български | Ελληνικά | English | Español | Français | Italiano | Polski | Português | Русский | Slovenščina | Srpski | Türkçe | 中文