Metadata-Version: 2.1
Name: vdownload
Version: 1.0.0
Summary: A Powerful Geospatial Data Downloader
Home-page: https://github.com/thangqd/vdownload
Author: Thang Quach
Author-email: quachdongthang@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tqdm ~=4.66.2
Requires-Dist: requests ~=2.31.0
Requires-Dist: shapely ~=2.0.1
Requires-Dist: osmium ~=3.7.0

# VDownload - A Powerful Geospatial Data Downloader

## Installation: 
- Using pip install (Windows/ Linux):
  ``` bash 
  pip install vdownload
  ```
- Show information of installed vdownload: 
  ``` bash 
  pip show vdownload
  ```
- Install the latest vertion of vdownload:
  ``` bash 
  pip install vdownload --upgrade
  ```
    
- Visit vdownload on [PyPI](https://pypi.org/project/vdownload/)

## Usage:

### OSM data:
#### Downnload OSM data by country/ region
  ``` bash 
  > osmdownload <country or region name>
  ```
Ex: `> osmdownload vietnam` 

#### Show OSM info (.pbf)
  ``` bash 
  > osminfo <OSM file>
  ```
Ex: `> osminfo vietnam.osm.pbf` 

#### Show OSM info (.pbf)
  ``` bash 
  > osm2geojson -i <path_to_osm_file.osm.pbf> -o <output_file.geojson>
  ```
Ex: `> osm2geojson -i vietnam.osm.pbf -o vietnam.geojson` 

### Google Open Buildings:
#### Download Google Open Buildings by country:
  ``` bash 
  > openbuildings <country name or iso3 code>
  ```
Ex: `> openbuildings vietnam` or `> openbuildings vnm`


