All Projects β†’ tmontaigu β†’ shapefile-rs

tmontaigu / shapefile-rs

Licence: MIT license
Rust library to read & write shapefiles

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to shapefile-rs

Blendergis
Blender addons to make the bridge between Blender and geographic data
Stars: ✭ 4,642 (+12115.79%)
Mutual labels:  gis, shapefile
Pyearth
🌐 A lightweight 3D visualization of the earth in 150 lines of Qt/OpenGL
Stars: ✭ 78 (+105.26%)
Mutual labels:  gis, shapefile
Maup
The geospatial toolkit for redistricting data.
Stars: ✭ 35 (-7.89%)
Mutual labels:  gis, shapefile
covid hospitals demographics
COVID-19 relevant data on hospital location / capacity, nursing home location / capacity, county demographics
Stars: ✭ 21 (-44.74%)
Mutual labels:  gis, shapefile
Agstoshapefile
Convert ArcGIS Server Dynamic Map Service to GeoJSON and Shapefile
Stars: ✭ 172 (+352.63%)
Mutual labels:  gis, shapefile
Fmm
Fast map matching, an open source framework in C++
Stars: ✭ 359 (+844.74%)
Mutual labels:  gis, shapefile
Geotools
Official GeoTools repository
Stars: ✭ 1,109 (+2818.42%)
Mutual labels:  gis, shapefile
GeoConvert
Converting between Geojson and GIS file formats
Stars: ✭ 32 (-15.79%)
Mutual labels:  gis, shapefile
Aerialbot
A simple yet highly configurable bot that tweets geotagged aerial imagery of a random location in the world.
Stars: ✭ 157 (+313.16%)
Mutual labels:  gis, shapefile
Gis Dataset Brasil
Geographic Information Systems (GIS) Dataset Brasil - Coleção de shapefiles, GeoJSON e TopoJSON prontas para uso
Stars: ✭ 121 (+218.42%)
Mutual labels:  gis, shapefile
Shapefile.jl
Parsing .shp files in Julia
Stars: ✭ 40 (+5.26%)
Mutual labels:  gis, shapefile
gis-snippets
Some code snippets for GIS tasks
Stars: ✭ 45 (+18.42%)
Mutual labels:  gis, shapefile
Centerline
Calculate the polygon's centerline
Stars: ✭ 94 (+147.37%)
Mutual labels:  gis, shapefile
Mapshaper
Tools for editing Shapefile, GeoJSON, TopoJSON and CSV files
Stars: ✭ 2,813 (+7302.63%)
Mutual labels:  gis, shapefile
pyGISS
πŸ“‘ A lightweight GIS Software in less than 100 lines of code
Stars: ✭ 114 (+200%)
Mutual labels:  gis, shapefile
searchmap
Find places and Draw on Map using Google Maps API
Stars: ✭ 53 (+39.47%)
Mutual labels:  gis
jismesh
Utilities for the Japanese regional grid square system defined in Japanese Industrial Standards (JIS X 0410 εœ°εŸŸγƒ‘γƒƒγ‚·γƒ₯).
Stars: ✭ 33 (-13.16%)
Mutual labels:  gis
platform
Mapseed is a simple, beautiful way to collect information and tell geographic stories.
Stars: ✭ 81 (+113.16%)
Mutual labels:  gis
geojson-to-wfs-t-2
A lightweight javascript module to format WFS-T-2 statements from GeoJSON features
Stars: ✭ 21 (-44.74%)
Mutual labels:  gis
GSFLOW-GRASS
Generates inputs for and runs the coupled groundwater-surface water model "GSFLOW"
Stars: ✭ 24 (-36.84%)
Mutual labels:  gis

shapefile-rs

Rust library to read & write shapefiles .dbf files supported via the dbase crate

let mut reader = shapefile::Reader::from_path(filename).unwrap();

for result in reader.iter_shapes_and_records() {
    let (shape, record) = result.unwrap();
    println ! ("Shape: {}, records: ", shape);
    for (name, value) in record {
        println ! ("\t{}: {:?}, ", name, value);
    }
    println ! ();
}

You can check out examples in the examples folder

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].