ArcGIS for Desktop

  • Documentation
  • Pricing
  • Support

  • My Profile
  • Help
  • Sign Out
ArcGIS for Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS for Desktop

A complete professional GIS

ArcGIS for Server

GIS in your enterprise

ArcGIS for Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Pricing
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

Help

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • More...

Raster To DTED

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

Splits a raster dataset into separate files based on the DTED tiling structure.

Usage

  • There are three levels of the DTED tiling scheme available: DTED level 0, DTED level 1, and DTED level 2.

  • The input can only be a single band raster dataset.

  • The output spatial reference will be GCS_WGS84. Each tile's extent is one degree in each direction, plus a half pixel on each edge so adjacent tiles have one column and row of overlap. The output pixel size is dictated by the DTED level, and the data is converted and stored as signed, 16-bit integers.

  • The DTED format is intended to be used with one band data that represents elevation, so this tool cannot be used for multiband images.

Syntax

RasterToDTED_management (in_raster, out_folder, dted_level, {resampling_type})
ParameterExplanationData Type
in_raster

Select a single band raster dataset that represents elevation.

Raster Layer
out_folder

Select a destination where the folder structure and DTED files will be created.

Folder
dted_level

Select an appropriate level based on the resolution of your elevation data.

  • DTED_0 — 900 m
  • DTED_1 — 90 m
  • DTED_2 —30 m
String
resampling_type
(Optional)

Choose an appropriate technique based on the type of data you have.

  • NEAREST —The fastest resampling method, and it minimizes changes to pixel values. Suitable for discrete data, such as land cover.
  • BILINEAR —Calculates the value of each pixel by averaging (weighted for distance) the values of the surrounding 4 pixels. Suitable for continuous data.
  • CUBIC —Calculates the value of each pixel by fitting a smooth curve based on the surrounding 16 pixels. Produces the smoothest image, but can create values outside of the range found in the source data. Suitable for continuous data.
String

Code sample

RasterToDTED example 1 (Python window)

This is a Python sample for RasterToDTED.

import arcpy
RasterToDTED_management("C:/workspace/image1.img","C:/workspace/outputDTED",
                        "DTED_0","BILINEAR")
RasterToDTED example 2 (stand-alone script)

This is a Python script sample for RasterToDTED.

##====================================
##Raster To DTED
##Usage: RasterToDTED_management in_raster out_folder DTED_1 | DTED_0 | DTED_2
##                               {BILINEAR | NEAREST | CUBIC} 

import arcpy
arcpy.env.workspace = "c:/workspace"

##Split a large DEM image to DTED_1 standard
arcpy.RasterToDTED_management("socal_dem", "ras2dted", "DTED_1", "BILINEAR")

Environments

  • Current Workspace
  • Pyramid
  • Raster Statistics

Licensing information

  • ArcGIS for Desktop Basic: Yes
  • ArcGIS for Desktop Standard: Yes
  • ArcGIS for Desktop Advanced: Yes

Related topics

  • An overview of the Raster toolset
  • Environment settings for raster data
  • Split Raster

ArcGIS for Desktop

  • Home
  • Documentation
  • Pricing
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS for Desktop
  • ArcGIS for Server
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Insiders Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
© Copyright 2016 Environmental Systems Research Institute, Inc. | Privacy | Legal