projectLng static method

double projectLng(
  1. double longitude
)

Project the longitude for this Crs

Implementation

static double projectLng(double longitude) {
  return r * math.pi / 180 * longitude;
}