Monitor One Edge power down GNSS when entering sleep

I using the Monitor Edge FW for the GPS functions but adding some custom code and wanted to see if there is a way to power down the GNSS when entering Hibernation sleep mode. It looks to stay powered up.

I use the suggested sleep...
Particle.disconnect();
Cellular.disconnect();
delay(10000);
Cellular.off();
delay(2000);

    SystemSleepConfiguration config;
    config.mode(SystemSleepMode::HIBERNATE)
    .duration(sleeptime*1000);
    System.sleep(config);

You should not use the system sleep functions with Tracker Edge or Monitor Edge as none of the peripherals will be shut down.

Instead use EdgeSleep in Monitor Edge.

Thanks!