ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS 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
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Converting inputs from degrees to radians for Trigonometric tools

Available with Spatial Analyst license.

To use degrees as inputs for trigonometric tools, the values need to be converted into radians. To do the conversion, multiply the input values by pi/180, or approximately 0.01745.

In Python, this conversion can be done directly in the expression, or you can define a variable to store the value once and reuse it as needed. Using the Cos tool as an example, the syntax could be in the following form:

>>> import math
>>> from arcpy.sa import *
>>> OutRas = Cos (InRas * math.pi / 180.0)

Or, you can use a variable for the conversion factor:

>>> import math
>>> deg2rad = math.pi / 180.0
>>> from arcpy.sa import *
>>> OutRas = Cos (InRas * deg2rad)

The following illustrations demonstrate converting inputs whose values are in degrees into radians before performing the particular operation.

Note:

The variable defined in the example above will be used in these examples.

Examples of converting trigonometric inputs to radians

Tool

Illustration and Python syntax

Cos
Cos illustration with input converted from Degrees to Radians
OutRas = Cos(InRas * deg2rad)
Sin
Sin illustration with input converted from Degrees to Radians
OutRas = Sin(InRas * deg2rad)
Tan
Tan illustration with input converted from Degrees to Radians
OutRas = Tan(InRas * deg2rad)

Related topics

  • An overview of the Trigonometric Math toolset
  • Cos
  • Sin
  • Tan

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

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

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal