conflicts between gemgis and pandas
ada-hou opened this issue · 3 comments
Describe the bug
A clear and concise description of what the bug is.
After import gemgis, pandas only retains two decimal places.
To Reproduce
Steps to reproduce the behavior:
pandans = 2.0.1
gemgis = 1.1.8
code:
`import pandas as pd
aaa = [[111.8065315459521, 36.86729095761402]]
print("Using Pandas:")
print(pd.DataFrame(data=aaa))
import gemgis
print("\nUsing gemgis:")
print(pd.DataFrame(data=aaa))
`
result:
Using Pandas:
0 1
0 111.806532 36.867291
Using gemgis:
0 1
0 111.81 36.87
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: [macOS]
- Browser [e.g. chrome, safari]
- Version [10.15]
Smartphone (please complete the following information):
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
Additional context
Add any other context about the problem here.
Hello,
are you using any GemGIS function?
But I found a new problem, I re -initiated an issue