Hi,
I'm currently developping an application using the 100.14.0 version of the SDK.
I should mention I'm not very experienced in manipulating projections so that might be the issue here.
There is something I can't figure out about the GeometryEngine, here is a sample code :
Point point = new Point(70, 0, SpatialReferences.getWgs84());
GeometryEngine.moveGeodetic(point, 8640000.0, new LinearUnit(LinearUnitId.METERS), 0.0, new AngularUnit(AngularUnitId.RADIANS), GeodeticCurveType.LOXODROME); //This returns Point: [0,000000, 90,000000, 0,000000, NaN] SR: 4326
I would expect the point to go beyond the north pole and circle around the earth, but it seems like the GeometryEngine cannot go beyond the pole in this configuration.
I suspect this has something to do with the projection, but I'm not knowledgeable enough about it to understand how to fix this.
Could anyone explain what's going on ? Are there any ressources I could read about this topic that could help me ?