Metadata-Version: 2.4
Name: igp-plotter
Version: 0.1.0
Summary: Python library for decoding and visualizing SBAS IGP grid coverage
Author-email: Yash Patel <yash.patel@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: geopandas
Requires-Dist: shapely
Requires-Dist: geodatasets
Dynamic: license-file

# IGP Plotter

IGP Plotter is a Python library for decoding SBAS18 IGP masks and
visualizing ionospheric grid point (IGP) coverage using latitude–longitude grids.

## Features
- Decode SBAS18 IGP bit masks
- Map IGP indices to geographic coordinates
- Visualize global IGP coverage
- Designed for GNSS / AAI / CNS research

## Installation
```bash
pip install -e .


## Example
'''python
from igp_plotter import decode_sbas_asc, load_grid, build_igp_dataframe, plot_igp_points

sbas = decode_sbas_asc("15_dec.ASC")
grid = load_grid("grid.csv")

dfs = build_igp_dataframe(sbas, grid)

for (prn, band), df in dfs.items():
    plot_igp_points(df, title=f"PRN {prn} | Band {band}")'''
