Coder Social home page Coder Social logo

maptalks.kriginglayer's Introduction

maptalks.KrigingLayer

CircleCI NPM Version

A maptalks Layer to draw spatial data in a way of providing spatial prediction and mapping capabilities via the ordinary kriging algorithm.

screenshot

Examples

Install

  • Install with npm: npm install maptalks.KrigingLayer.
  • Download from dist directory.
  • Use unpkg CDN: https://unpkg.com/maptalks.KrigingLayer/dist/maptalks.KrigingLayer.min.js

Usage

As a plugin, maptalks.KrigingLayer must be loaded after maptalks.js in browsers.

<link rel="stylesheet" href="https://unpkg.com/maptalks/dist/maptalks.css">
<script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/maptalks.KrigingLayer/dist/maptalks.KrigingLayer.min.js"></script>
<script>
    var samples = [[109.199, 34.443, 4.278], [109.224, 34.464, 92.767], [109.271, 34.464, 45.834], [109.322, 34.447, 5.220]];
    var regions =[[109.220, 34.589], [109.161, 34.648], [109.131, 34.631], [109.156, 34.526]
    , [109.170, 34.437]];
    var colors =["#00A600", "#01A600", "#03A700", "#04A700", "#05A800", "#07A800"];
    var polygon = new maptalks.Polygon(regions);
    var krigingLayer = new maptalks.KrigingLayer('kriging', samples, {
        colors: colors,
        regions: polygon
    });
</script>

Supported Browsers

IE 9-11, Chrome, Firefox, other modern and mobile browsers.

API Reference

KrigingLayer is a subclass of maptalks.Layer and inherits all the methods of its parent.

Constructor

// samples's format
//[[x,y,value], [x,y,value] ..]
// symbol only supports lineWidth and lineColor
new maptalks.KrigingLayer(id, samples, options)
  • id String layer id
  • samples Object[] providing sample data for trainning method, [[x,y,value], [x,y,value] ..]
  • options Object options
    • alpha Number is a number that correspond to the variance parameters of the gaussian process and the prior of the variogram model, respectively.A diffuse α prior is typically used (10 by default)
    • sigma2 Number represent σ2,it's a variance parameters of the gaussian process (0 by default)
    • width Number the pixel cell's width (0.001 by default)
    • model String the kriging render method,mainly includ 'Gaussian','Exponential',and 'Spherical' (exponential by default)
    • colors Object[] the color you will render the layer
    • regions maptlaks.Polygon render polygons

getData()

get layer's data

Returns Object[]

setData(data)

set new data to the layer

  • data Object[] new predict points

Returns this

setModel(model)

set new model to the kriging render method

  • model String render method

Returns this

Contributing

We welcome any kind of contributions including issue reportings, pull requests, documentation corrections, feature requests and any other helps.

Develop

The only source file is index.js.

It is written in ES6, transpiled by babel and tested with mocha and expect.js.

Scripts

  • Install dependencies
$ npm install
  • Watch source changes and generate runnable bundle repeatedly
$ npm run dev
  • Tests
$ npm test
  • Watch source changes and run tests repeatedly
$ npm run tdd
  • Package and generate minified bundles to dist directory
$ npm run build
  • Lint
$ npm run lint

maptalks.kriginglayer's People

Contributors

liubgithub avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.