php-extended / php-api-fr-insee-naf-object
A library that implements the php-extended/php-api-fr-insee-naf-interface library
Requires
Requires (Dev)
- dev-master
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.4.3
- 6.4.2
- 6.4.1
- 6.4.0
- 6.1.7
- 6.1.6
- 6.1.5
- 6.1.4
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.0
- 5.0.1
- 5.0.0
- 4.0.2
- 4.0.1
- 4.0.0
- 3.3.7
- 3.3.6
- 3.3.5
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.17
- 3.0.16
- 3.0.15
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
This package is auto-updated.
Last update: 2024-10-31 00:24:11 UTC
README
A library that implements the php-extended/php-api-fr-insee-naf-interface library.
A library that makes insee Nomenclature des Activités Françaises (NAF) available as objects to populate a database. The NAF is available at the url : https://www.insee.fr/fr/information/2120875.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-api-fr-insee-naf-object ^7
Basic Usage
You may use this library the following way :
use PhpExtended\Insee\InseeNafEndpoint;
$endpoint = new InseeNafEndpoint();
// for the latest norm (2008) :
$sections = $endpoint->getNaf2008Lv1SectionIterator(); // returns iterator of InseeNaf2008Lv1Section
$divisions = $endpoint->getNaf2008Lv2DivisionIterator(); // returns iterator of InseeNaf2008Lv2Division
$groups = $endpoint->getNaf2008Lv3GroupIterator(); // returns iterator of InseeNaf2008Lv3Group
$classes = $endpoint->getNaf2008Lv4ClassIterator(); // returns iterator of InseeNaf2008Lv4Class
$subclasses = $endpoint->getNaf2008Lv5SubclassIterator(); // returns iterator of InseeNaf2008Lv5Subclass
$artisanats = $endpoint->getNaf2008Lv6ArtisanatIterator(); // returns iterator of InseeNaf2008Lv6Artisanat
// for the previous norm (2003) :
$sections = $endpoint->getNaf2003Lv1SectionIterator(); // returns iterator of InseeNaf2003Lv1Section
$divisions = $endpoint->getNaf2003Lv2DivisionIterator(); // returns iterator of InseeNaf2003Lv2Division
$groups = $endpoint->getNaf2003Lv3GroupIterator(); // returns iterator of InseeNaf2003Lv3Group
$classes = $endpoint->getNaf2003Lv4ClassIterator(); // returns iterator of InseeNaf2003Lv4Class
$subclasses = $endpoint->getNaf2003Lv5SubclassIterator(); // returns iterator of InseeNaf2003Lv5Subclass
// for the previous norm (1993) :
$sections = $endpoint->getNaf1993Lv1SectionIterator(); // returns iterator of InseeNaf1993Lv1Section
$divisions = $endpoint->getNaf1993Lv2DivisionIterator(); // returns iterator of InseeNaf1993Lv2Division
$groups = $endpoint->getNaf1993Lv3GroupIterator(); // returns iterator of InseeNaf1993Lv3Group
$classes = $endpoint->getNaf1993Lv4ClassIterator(); // returns iterator of InseeNaf1993Lv4Class
$subclasses = $endpoint->getNaf1993Lv5SubclassIterator(); // returns iterator of InseeNaf1993Lv5Subclass
// for the previous norm (1973) :
$sections = $endpoint->getNap1973Lv1SectionIterator(); // returns iterator of InseeNap1973Lv1Section
$divisions = $endpoint->getNap1973Lv2DivisionIterator(); // returns iterator of InseeNap1973Lv2Division
$groups = $endpoint->getNap1973Lv3GroupIterator(); // returns iterator of InseeNap1973Lv3Group
$classes = $endpoint->getNap1973Lv4ClassIterator(); // returns iterator of InseeNap1973Lv4Class
The InseeNaf2003Lv5Subclass
also contains the default code for the
InseeNaf2008Lv5Subclass
records, which is made to ease the transitions from
the 2003 norm to the latest norm. Those transitions were written using the
transition tables on the insee, but in case of multiple transitions, the most
probable was hand chosen.
For This reason there may be errors in the transition table between the 2003 norm to the 2008 norm. Pull requests on the csv files are welcome if they try to correct such transition choices.
The same is true for the relations between the 1993 norm with the 2003 norm (for
relations between InseeNaf1993Lv5Subclass
to InseeNaf2003Lv5Subclass
)
and is true for relations between the 1973 norm with the 1993 norm (for
relations between InseeNap1973Lv4Class
to InseeNaf1993Lv5Subclass
).
License
The code is under MIT (See license file).
- Source supplémentaires :