npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pic4carto

v3.0.0

Published

JS library for geolocated, free-licensed pictures retrieval

Downloads

229

Readme

Pic4Carto.js

build status

Read-me

Pic4Carto.js is a library for efficient retrieval of geolocated, free-licensed pictures. Its goal is to make easier to reuse pictures from several providers (Panoramax, Flickr, Mapillary, KartaView, Wikimedia Commons...). Using a simple API, you can retrieve all the pictures freely available over a given area. See the list of available providers.

For the HTTP API version of Pic4Carto, please see the P4CaaS project.

Help making this possible

Install

Pic4Carto.js can be installed following one of these methods.

Using npm

npm install pic4carto

Then, access it in JS:

import * as P4C from "pic4carto";

Using bundle version

You can use versions offered by various CDN, for example:

<script src="https://cdn.jsdelivr.net/npm/pic4carto"></script>
<script>
	var picManager = new P4C.PicturesManager();
</script>

Usage

Here are some rapid examples of how to use Pic4Carto.js. If you want working examples, see HTML examples in dist/ folder. For complete documentation, check the API details.

Get pictures in a given area

var picManager = new P4C.PicturesManager();

//Call for pictures download
picManager.startPicsRetrieval(new P4C.LatLngBounds(new P4C.LatLng(48.1075, -1.6860), new P4C.LatLng(48.1156, -1.6739)))
.then(function(pictures) { //Called when promise resolves
	for(let pId=0; pId < pictures.length; pId++) {
		let currentPicture = pictures[pId];
		console.log(currentPicture.pictureUrl);
	}
});

Get pictures within a circle

var picManager = new P4C.PicturesManager();

//Call for pictures download
picManager.startPicsRetrievalAround(new P4C.LatLng(48.1075, -1.6860), 15) //15 meters around this point
.then(function(pictures) { //Called when promise resolves
	for(let pId=0; pId < pictures.length; pId++) {
		let currentPicture = pictures[pId];
		console.log(currentPicture.pictureUrl);
	}
});

Show message when a fetcher has done or failed

var picManager = new P4C.PicturesManager();

//Asynchronous events for watching fetchers progress
picManager
	.on("fetcherdone", (fetcherId) => {
		console.log("Fetcher "+fetcherId+" finished its pictures retrieval");
	})
	.on("fetcherfailed", (fetcherId) => {
		console.log("Fetcher "+fetcherId+" failed to retrieve pictures");
	});

//Filtering only recent pictures (since mid-2016)
picManager.startPicsRetrieval(new P4C.LatLngBounds(new P4C.LatLng(48.1075, -1.6860), new P4C.LatLng(48.1156, -1.6739)), { mindate: 1464775200000 })
.then((picsArray) => { //Called when promise resolves
	for(let pId=0; pId < picsArray.length; pId++) {
		let currentPicture = picsArray[pId];
		console.log(currentPicture.pictureUrl);
	}
});

Get summary of pictures availability

var picManager = new P4C.PicturesManager();

//Call for pictures summary download (around Rennes center)
picManager.startSummaryRetrieval(new P4C.LatLngBounds(new P4C.LatLng(48.1075, -1.6860), new P4C.LatLng(48.1156, -1.6739)))
.then(function(summary) { //Called when promise resolves
	console.log("Available pictures: "+((summary.approxAmount) ? "~" : "")+summary.amount+" | Last picture date: "+(new Date(summary.last).toDateString()));
});

Search through statically served images

var picManager = new P4C.PicturesManager({
	userDefinedFetchers: {
		ownfetch: {
			csv: "http://my.server.net/own/index.csv", // Mandatory
			name: "OwnFetcher", // Recommended
			homepage: "http://my.server.net/own/", // Optional
			logo: "http://my.server.net/own/logo.png", // Recommended
			bbox: new LatLngBounds(new LatLng(1.2, 48.7), new LatLng(1.3, 48.8)), // Recommended if you server pictures in a specific country/area
			license: "CC By-SA 3.0", // Optional, can be overriden in CSV index
			user: "Default user name" // Optional, can be overriden in CSV index
		}
	}
});

//then call picManager.startPicsRetrieval as shown above

Get automatic detections from pictures in a given area

var picManager = new P4C.PicturesManager();

//Call for pictures download
picManager.startDetectionsRetrieval(
	new P4C.LatLngBounds(new P4C.LatLng(48.1075, -1.6860), new P4C.LatLng(48.1156, -1.6739)),
	{ types: [ P4C.Detection.SIGN_ADVERT, P4C.Detection.SIGN_STORE ] }
)
.then(function(detections) { //Called when promise resolves
	for(let dId=0; dId < detections.length; dId++) {
		let currentDetection = detections[dId];
		console.log(currentDetection.type);
		console.log(currentDetection.date);
		console.log(currentDetection.coordinates);
	}
});

Build

Dependencies

  • npm

Compiling

If you want to build Pic4Carto.js by yourself, run the following commands:

npm install
npm run build

When this is done, Pic4Carto.js is ready in build/ folder.

Tests

A test suite is available, to see results run:

npm run test

Contributing

Pic4Carto.js is an open-source project, and contributions are welcome. Here is how you can help:

  • Let us know about any free-licensed pictures provider you want to see integrated in Pic4Carto.js.
  • Report bugs or discuss new functionalities in the Issues tracker.
  • Write code (and tests) and create a merge request. As this project is using Git Flow branching model, please create requests on develop or feature/* branches.

License

Copyright 2016-2024 Adrien PAVIE

See LICENSE for complete AGPL3 license. Pic4Carto.js is a fork based on Pic4Carto code basis.

Pic4Carto.js is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Pic4Carto.js is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with Pic4Carto.js. If not, see http://www.gnu.org/licenses/.