Getting a set of grid points for a coverage region

Hello, I see in the documentation some things about tessellation and obtaining grid points during interpolation. Are there any built-in methods/algorithms to obtain a set of grid points of a desired spacing for a lat/lon bounded region, taking equatorial vs polar spacing into account, etc.? Thanks.

Yo may try to configure your EllipsoidTesselator with a ConstantAzimuthAiming set to 0° (or in fact any multiple of 90°). Beware however that it uses constant curvilinear distance on the surface, not constant angular spacing. For that, you would need to do the loops by yourself and check if the points are in the zone of interest.

OK, thank you, Luc.