- Weatherford Knowledge Base
- P#
- Directional Functions
-
Getting Started
-
Customer Training
-
Customer Success
-
Updates
-
Production Optimization
-
Artificial Lift Optimization
-
Completion Optimization
-
Environmental, Social & Governance
-
Development, Acquisition & Divestitures
-
Enhanced Oil Recovery
-
Admin
-
P#
- Getting Started with P#
- Data Cleansing
- String Functions
- Scenario Functions
- Regression Functions
- Placeholder Functions
- Mathematical Functions
- Logic Functions
- Entities Function
- Moving Window Functions
- Time and Date Functions
- Statistical Functions
- Economic Functions
- Data Handling
- Additional Functions
- Directional Functions
- Machine Learning Functions
- DCA Functions
- Neighborhood Functions
-
Packages
CoordinateDegree()
Returns latitude or longitude part of a coordinate pair transformed from specified UTM coordinates.
Syntax
CoordinateDegree(easting, northing, zone number, hemisphere, coordDegree)
- easting: number specifying the UTM easting coordinate, in meters
- northing: number specifying the UTM northing coordinate, in meters
- zone number: integer specifying the UTM zone that the easting/northing coordinates are in
- hemisphere: string specifying the hemisphere the UTM coordinates are in. hemisphere is either "N" or "S"
- coordDegree: string specifying which component of the coordinate pair is returned. coordDegree is either "latitude" or "longitude"
Example
CoordinateDegree(260995.3, 3293587.3, 15, "N", "latitude")
CoordinateDegree(592079.39, 5318004.59, 33, "N", "longitude")