gitextract_dvyux3q3/ ├── .github/ │ └── workflows/ │ ├── pypi.yml │ └── test.yml ├── .gitignore ├── .pypic ├── LICENSE ├── README.md ├── coord_convert/ │ ├── __init__.py │ ├── coordconvert.py │ └── transform.py ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── data/ │ ├── Polyline/ │ │ └── polyline.geojson │ ├── multiPoint/ │ │ ├── multi-point.cpg │ │ ├── multi-point.dbf │ │ ├── multi-point.prj │ │ ├── multi-point.qpj │ │ ├── multi-point.shp │ │ └── multi-point.shx │ ├── multiPolygon/ │ │ ├── polygon_wgs.cpg │ │ ├── polygon_wgs.dbf │ │ ├── polygon_wgs.prj │ │ ├── polygon_wgs.qpj │ │ ├── polygon_wgs.shp │ │ └── polygon_wgs.shx │ ├── multiPolyline/ │ │ ├── polyline_wgs.cpg │ │ ├── polyline_wgs.dbf │ │ ├── polyline_wgs.prj │ │ ├── polyline_wgs.shp │ │ └── polyline_wgs.shx │ ├── point/ │ │ ├── point.cpg │ │ ├── point.dbf │ │ ├── point.geojson │ │ ├── point.prj │ │ ├── point.qpj │ │ ├── point.shp │ │ └── point.shx │ └── polygon/ │ └── polygon.geojson └── test_transform.py