**This release changes the interface of Zodipy to no longer depend on specific observer/earth position as input, and allows the user to provide pointing information in the form of angular coordinates.**
- *Zodipy* now expects a `str` representing an observer and an `astropy.time.Time` object representing the time of observation instead of the previously required observer and earth positions in AU.
- The pointing information can now be given in the form of angles on the sky in co-latitude and longitude (`theta` and `phi`).
- The JPL ephemeris `de432s` will be downloaded the first time the interface is initialized (10 MB file).
**Following is a new minimal *Zodipy* use case**
python
from astropy import unit as u
from astropy.time import Time
from zodipy import Zodipy
model = Zodipy()
model.get_emission(
25*u.micron,
obs="earth",
obs_time=Time.now(),
theta=10*u.deg,
phi=40*u.deg,
)
>> <Quantity [16.65684599] MJy / sr>