Interplanetary logistics are a fundamental component of Factorio Space Age. It is puzzling to me why this particular aspect of the game feels half finished in what is otherwise a masterpiece of a game.
Anyway, the problem at hand is this. I want to import items from one planet to another planet. Not an endless supply, though. Just the right amount. We can achieve this by using combinators to read the current number of items in the logistics network on a specific surface (planet) and comparing that with values we set in a constant combinator. The delta between those two values is what we want to import.
The first step is to hook up a Roboport with a wire (red in my case)

We need to configure the Roboport to Read logistic network contents . This is so that all the items in the logistics network that this Roboport belongs to are made available to the circuit network.

Now we configure an Arithmetic combinator to multiply everything from the input by -1 so we get a negative number and output it. Configure INPUT: EACH * -1 / OUTPUT: EACH.

Now we hook up the Arithmetic combinator output to a Decider combinator input (I used a red wire in my example). Now hook up a Constant combinator configured with the numbers of items you want to import to the Decider combinator input (I used a green wire in my example).

The constant combinator makes liberal use of logistics groups. These are such a great feature. Particularly if you're able to utilize 5x GROUP to make sure you have a nice buffer of certain items in one place without having to keep separate groups for different use cases.

Now, we need to configure the Decider combinator to compare the Red inputs to the Green inputs and output the delta to send to space.

We configure the Decider combinator Conditions: EACH ≥ 1 - Outputs: EACH Input count. This subtracts the red signals from the green signals, so that anything with a positive number gets imported (if present on a Space ship).
For example, note above that we have a -100 Blue Circuit signal. Below I have added 50k green transport belts into my logistics network, which makes for an easy comparison to see the combinator in action.

The last step to actually send these requests to space ships is to hook up the output from the Decider to the Cargo landing pad building and set Set requests.

With this in place you will never over import a specific product from space again. I've found this really helped keep rockets on other planets available for other purposes instead of spamming ships full of the same items over and over and over. Especially in the early stages of space where your remote bases might be less capable.
Again though, I'm left wondering, why can't we just have interplanetary logistics networks? Make it an end game tech or something idk. But anyway, until we get that this will have to do.
Bonus Tip: What if you have multiple logistics networks on one surface?

Use Radars to hook them up! The remote side Roboport is set to the same `Read logistics network contents` and then the red wire is hooked up to the Radar. Then we import the radar signal (on the red wire) to the input of the Arithmetic combinator like we did before.

Happy Factories. Go Artemis II (this post published during reentry).