robintw / Py6S

A Python interface to the 6S Radiative Transfer Model
GNU Lesser General Public License v3.0
191 stars 105 forks source link

use depreciated ix method which is no longer available in pandas v1.0 above #59

Closed drzhouq closed 4 years ago

drzhouq commented 4 years ago

https://github.com/robintw/Py6S/blob/2a606a491157d396a08bc33eaf7787b761c0828c/Py6S/SixSHelpers/aeronet.py#L115

ix has been depreciated from pandas for a while and was dropped after pandas v1.0. Suggest to replace ix with iloc. We need search entire project to refactor ix to iloc

robintw commented 4 years ago

Fixed in 7a6da6e.