No description
Find a file
2025-03-03 23:01:34 +02:00
assets logo 2025-02-28 14:19:32 +02:00
bin flutterized 2025-02-27 15:24:16 +02:00
lib conversion fix, bugfixes 2025-03-03 23:01:34 +02:00
test flutterized 2025-02-27 15:24:16 +02:00
.flutter-plugins flutterized 2025-02-27 15:24:16 +02:00
.flutter-plugins-dependencies refactor 2025-02-27 15:38:39 +02:00
.gitignore flutterized 2025-02-27 15:24:16 +02:00
analysis_options.yaml init 2025-02-27 13:43:31 +02:00
CHANGELOG.md init 2025-02-27 13:43:31 +02:00
pubspec.lock flutterized 2025-02-27 15:24:16 +02:00
pubspec.yaml better metadata processing 2025-02-28 13:53:15 +02:00
README.md sample output 2025-02-28 15:50:53 +02:00

Rugreefer

Rugreefer is a Dart library for retrieving metadata about geographic coordinates from a dopecarpet server. It converts coordinates into a geohash, fetches a gzipped GeoJSON file from the API, and extracts relevant spatial data such as polygons and lines. The library also supports caching with optional expiration to improve performance.

Features

  • Converts latitude/longitude to geohash (precision: 4 characters)
  • Fetches GeoJSON files from a remote API
  • Extracts relevant metadata from polygons and lines
  • Supports caching for performance optimization
  • Optional cache expiration (default: 14 days)
  • Works in Flutter (mobile, desktop, web)

Installation

Add rugreefer to your pubspec.yaml:

dependencies:
  rugreefer:
    git:
      url: https://github.com/TheRandonauts/rugreefer.git

Then, run:

flutter pub get

Usage

Basic Example

import 'package:rugreefer/rugreefer.dart';

void main() async {
  final lookup = RugReefer(
    apiUrl: 'http://localhost:8000/get_geodata/?format=geojson&geohash=',
    enableCacheExpiration: true,
  );

  final results = await lookup.lookup(30.5735040, 34.453125);
  print(results);
}

Example Output:

[
  {
    "in": {
      "bush": ["scrub"],
      "forest": ["forest"]
    }
  },
  {
    "by": {
      "water": ["stream"]
    }
  }
]

Custom Cache Settings

final lookup = RugReefer(
  apiUrl: 'http://your-api.com/get_geodata/?format=geojson&geohash=',
  enableCacheExpiration: true,
  cacheExpirationDuration: Duration(days: 7),
);

Author

@randogoth