-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
32 lines (28 loc) · 1.32 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
define('APP_URL', 'http://api.formater');
define( 'APP_DIR', __DIR__);
define( 'TEST_DIR', realpath( APP_DIR.'/tests'));
define('TEMPLATE_DIR', realpath( APP_DIR.'/templates'));
define('DATA_DIR', APP_DIR. '/data');
define('LIB_DIR', APP_DIR.'/lib');
define('DATA_FILE', APP_DIR.'/data/geojson_bcmt_ft_test.json');
define('DATA_FILE_BCMT', APP_DIR.'/data/geojson_bcmt_local.json');
define('DATA_FILE_ISGI', APP_DIR.'/data/geojson_isgi_local.json');
define('DATA_FILE_GRENOBLE', APP_DIR.'/data/geojson_etalab_ft_test.json');
// define('DATA_FILE_GRENOBLE', APP_DIR.'/data/geojson_etalab_ft.json');
define('GEOTIFF_DIR', APP_DIR.'/geotiff');
define('GEOTIFF_URL', APP_URL.'/geotiff/');
define('MEXICO_DIR', GEOTIFF_DIR.'/mexico');
define('MEXICO_URL', GEOTIFF_URL. 'mexico/');
/** SERVEUR BCMT**/
define('BCMT_FTP_SERVER' ,"ftp.bcmt.fr");
define('BCMT_FTP_USER', "bcmt_public");
define('BCMT_FTP_PWD', "bcmt");
/**Répertoire des fichiers des latitudes XX_CGM**/
define('DIR_LATITUDES_XX_CGM', APP_DIR.'/latitudesGeomagnetiques');
/**Répertoire des fichiers des latitudes geojson **/
define('DIR_LATITUDES', APP_DIR. '/data/latitudes');
/** adresse des fichiers de dev **/
define('DIR_ISGI_INDICES', APP_DIR.'/data/indices');
define('DIR_ISGI_ZONES', APP_DIR.'/data/isgi_zones');
define('DIR_ISGI_LATITUDES', APP_DIR.'/data/latitudes');