Giter VIP home page Giter VIP logo

Comments (4)

quincylvania avatar quincylvania commented on July 20, 2024 1

@bhousel Area sounds useful. Might be best to just include the official areas from Wikidata or whatnot since some of the island features have enormously distorted shapes.

from country-coder.

quincylvania avatar quincylvania commented on July 20, 2024

We could support country TLDs pretty easily since they mostly map to ISO codes. We would just have to note the exceptions.

from country-coder.

bhousel avatar bhousel commented on July 20, 2024

Another thing I ran into with the community index conversion..

It would be useful to have an "area" property. We use this in downstream projects to sort the features, and it would be nice to have it in the data so consumers don't need to calculate it. I know that these are very rough polygons and so the area is not very accurate, but for relative size it works ok.

In community index, the area is calculated like this:

const calcArea = require('@mapbox/geojson-area');
...
// calculate area and set a property for it
let props = feature.properties || {};
let area = calcArea.geometry(feature.geometry) / 1e6;   // m² to km²
props.area = Number(area.toFixed(2));

(the conversion and rounding is just to make the numbers more human readable - it's not really important)

from country-coder.

1ec5 avatar 1ec5 commented on July 20, 2024

A random assortment:

  • Spoken/official languages – for the multilingual name fields and label fallbacks, but this might require more granular geocoding
  • Official currencies – for the payment fields
  • Dominant road sign standard (Vienna Convention, MUTCD, SADC-RTSM) – would make it easier to come up with more intuitive icons for some presets
  • Maximum speed limit – for validating (catching usage of the wrong unit) and omitting invalid suggestions
  • Phone number format(s) – maybe for validating the phone and fax fields or just generating placeholder text for them
  • Dominant railway track gauge
  • Popular social media sites – for enabling contact fields but not obscure ones

One thing to keep in mind is that we’re potentially reinventing the wheel with some of this data. Traffic speed units are provided by CLDR, though CLDR happens to be less accurate than country-coder in this case. (CLDR is a gold mine of internationalization data, so definitely take a look at it for inspiration.)

from country-coder.

Related Issues (20)

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.