/********************************************************************** * This file is used for testing random stuff without running the * whole of SatDump, which comes in handy for debugging individual * elements before putting them all together in modules... * * If you are an user, ignore this file which will not be built by * default, and if you're a developper in need of doing stuff here... * Go ahead! * * Don't judge the code you might see in there! :) **********************************************************************/ #include "logger.h" #include "common/image/image.h" #include "products/image_products.h" #include "common/tracking/tracking.h" #include "common/geodetic/euler_raytrace.h" #include "common/geodetic/vincentys_calculations.h" #include "common/map/map_drawer.h" #include "resources.h" #include #include "common/projection/warp/warp.h" struct SingleLineCfg { satdump::TLE tles; std::vector timestamps; int image_width; float scan_angle; int gcp_spacing_x = 100; int gcp_spacing_y = 100; double timestamp_offset = 0; bool invert_scan = false; float roll_offset = 0; float pitch_offset = 0; float yaw_offset = 0; }; std::vector compute_gcps(SingleLineCfg cfg) { std::vector gcps; satdump::SatelliteTracker sat_tracker(cfg.tles); std::vector values; for (int x = 0; x < cfg.image_width; x += cfg.gcp_spacing_x) values.push_back(x); values.push_back(cfg.image_width - 1); int y = 0; bool last_was_invalid = false; for (double timestamp : cfg.timestamps) { if (timestamp == -1) { last_was_invalid = true; continue; } timestamp += cfg.timestamp_offset; geodetic::geodetic_coords_t pos_curr = sat_tracker.get_sat_position_at(timestamp); // Current position geodetic::geodetic_coords_t pos_next = sat_tracker.get_sat_position_at(timestamp + 1); // Upcoming position double az_angle = vincentys_inverse(pos_next, pos_curr).reverse_azimuth * RAD_TO_DEG; for (int x : values) { double final_x = !cfg.invert_scan ? (cfg.image_width - 1) - x : x; bool ascending = false; geodetic::euler_coords_t satellite_pointing; satellite_pointing.roll = -(((final_x - (cfg.image_width / 2.0)) / cfg.image_width) * cfg.scan_angle) + cfg.roll_offset; satellite_pointing.pitch = cfg.pitch_offset; satellite_pointing.yaw = (90 + (ascending ? cfg.yaw_offset : -cfg.yaw_offset)) - az_angle; geodetic::geodetic_coords_t ground_position; geodetic::raytrace_to_earth(pos_curr, satellite_pointing, ground_position); ground_position.toDegs(); // logger->info("{:d} {:d} {:f} {:s}", x, y, pos_curr.lat, img_pro.get_tle().name); if (y % cfg.gcp_spacing_y == 0 || y + 1 == cfg.timestamps.size() || last_was_invalid) gcps.push_back({(double)x, (double)y, (double)ground_position.lon, (double)ground_position.lat}); last_was_invalid = false; } y++; } return gcps; } int main(int argc, char *argv[]) { initLogger(); satdump::ImageProducts img_pro; img_pro.load(argv[1]); SingleLineCfg metop_avhrr_cfg; metop_avhrr_cfg.tles = img_pro.get_tle(); metop_avhrr_cfg.timestamps = img_pro.contents["timestamps"].get>(); metop_avhrr_cfg.image_width = 2048; metop_avhrr_cfg.timestamp_offset = -0.3; metop_avhrr_cfg.scan_angle = 110.6; metop_avhrr_cfg.roll_offset = -0.13; metop_avhrr_cfg.gcp_spacing_x = 100; metop_avhrr_cfg.gcp_spacing_y = 100; SingleLineCfg metop_mhs_cfg; metop_mhs_cfg.tles = img_pro.get_tle(); metop_mhs_cfg.timestamps = img_pro.contents["timestamps"].get>(); metop_mhs_cfg.image_width = 90; metop_mhs_cfg.timestamp_offset = -2; metop_mhs_cfg.scan_angle = 100; metop_mhs_cfg.roll_offset = -1.1; metop_mhs_cfg.gcp_spacing_x = 5; metop_mhs_cfg.gcp_spacing_y = 5; std::vector gcps = compute_gcps(metop_avhrr_cfg); satdump::ImageCompositeCfg rgb_cfg; rgb_cfg.equation = "ch1, ch2, ch4"; // "(ch3 * 0.4 + ch2 * 0.6) * 2.2 - 0.15, ch2 * 2.2 - 0.15, ch1 * 2.2 - 0.15"; rgb_cfg.equalize = true; satdump::warp::WarpOperation operation; operation.ground_control_points = gcps; operation.input_image = satdump::make_composite_from_product(img_pro, rgb_cfg); operation.output_width = 2048 * 8; operation.output_height = 1024 * 8; satdump::warp::ImageWarper warper; warper.op = operation; warper.update(); satdump::warp::WarpResult result = warper.warp(); logger->info("Drawing map..."); unsigned short color[3] = {0, 65535, 0}; map::drawProjectedMapShapefile({resources::getResourcePath("maps/ne_10m_admin_0_countries.shp")}, result.output_image, color, [operation, &result](float lat, float lon, int map_height2, int map_width2) -> std::pair { // First check if we are in bounds if (lat > result.top_left.lat || lat < result.bottom_right.lat) return {-1, -1}; if (lon < result.top_left.lon || lon > result.bottom_right.lon) return {-1, -1}; // Check how much we cover on the input image float covered_lat = abs(result.top_left.lat - result.bottom_right.lat); float covered_lon = abs(result.top_left.lon - result.bottom_right.lon); // Check how much offset the top right corner has float offset_lat = abs(result.top_right.lat - 90); float offset_lon = abs(result.top_left.lon + 180); // Bring lat / lon to 0-180, 0-360 lat = 180.0f - (lat + 90.0f); lon += 180; // Offset lat -= offset_lat; lon -= offset_lon; int imageLat = (lat / covered_lat) * map_height2; int imageLon = (lon / covered_lon) * map_width2; if (imageLat < 0 || imageLat > map_height2) return {-1, -1}; if (imageLon < 0 || imageLon > map_width2) return {-1, -1}; return {imageLon, imageLat}; }); // img_map.crop(p_x_min, p_y_min, p_x_max, p_y_max); logger->info("Saving..."); result.output_image.save_png("test.png"); }