-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoissonnages.json
2822 lines (2822 loc) · 498 KB
/
moissonnages.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"788fbe81-0c4b-4cea-b43a-9074d6aebe01-h01": {
"url": "https://data.naturefrance.fr/geonetwork/srv/fre/csw",
"name": "788fbe81-0c4b-4cea-b43a-9074d6aebe01-h01",
"owner_org": "788fbe81-0c4b-4cea-b43a-9074d6aebe01",
"title": "Catalogue de données sur la biodiversité",
"notes": "Création 2023-02-15 17:13:10. 14 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"default_extras\": {\"catalog_title\": \"Catalogue de données sur la biodiversité\", \"catalog_homepage\": \"https://data.naturefrance.fr/geonetwork/srv/fre/catalog.search#/home\", \"catalog_base_url\": \"https://data.naturefrance.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-56260-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-56260-01-h03",
"owner_org": "ddt-56260-01",
"title": "CSW Sextant : DDTM 56",
"notes": "Création 2021-11-09 15:11:45. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%56%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%56%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Morbihan%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Morbihan%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-29232-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-29232-01-h03",
"owner_org": "ddt-29232-01",
"title": "CSW Sextant : DDTM 29",
"notes": "Création 2021-11-09 15:30:15. 10 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%29%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%29%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Finistère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Finistère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-76540-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-76540-01-h03",
"owner_org": "ddt-76540-01",
"title": "CSW Sextant : DDTM 76",
"notes": "Création 2021-11-09 15:31:41. 5 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%76%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%76%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Seine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Seine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-14118-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-14118-01-h03",
"owner_org": "ddt-14118-01",
"title": "CSW Sextant : DDTM 14",
"notes": "Création 2021-11-09 15:49:18. 8 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%14%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%14%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Calvados%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Calvados%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-50502-01-h02": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-50502-01-h02",
"owner_org": "ddt-50502-01",
"title": "CSW Sextant : DDTM 50",
"notes": "Création 2021-11-09 16:03:50. 10 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%50%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%50%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Mer%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Nord%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Manche%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Manche%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-35238-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "ddt-35238-01-h03",
"owner_org": "ddt-35238-01",
"title": "CSW Sextant : DDTM 35",
"notes": "Création 2021-11-09 16:09:48. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%35%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%35%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ille%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vilaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ille%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vilaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"dreal-76540-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "dreal-76540-01-h03",
"owner_org": "dreal-76540-01",
"title": "CSW Sextant : DREAL Normandie",
"notes": "Création 2021-11-09 16:20:26. 56 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Normandie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Normandie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"dreal-86194-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "dreal-86194-01-h03",
"owner_org": "dreal-86194-01",
"title": "CSW Sextant : DREAL Nouvelle-Aquitaine",
"notes": "Création 2021-11-09 16:20:58. 5 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Nouvelle%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Aquitaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Nouvelle%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Aquitaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"dreal-35238-01-h04": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "dreal-35238-01-h04",
"owner_org": "dreal-35238-01",
"title": "CSW Sextant : DREAL Bretagne",
"notes": "Création 2021-11-09 16:22:45. 52 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"dreal_ut-97411-01-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "dreal_ut-97411-01-h03",
"owner_org": "dreal_ut-97411-01",
"title": "CSW Sextant : DEAL 974",
"notes": "Création 2021-11-09 16:28:52. 60 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%974%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%974%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"dtam-97502-01-h02": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "dtam-97502-01-h02",
"owner_org": "dtam-97502-01",
"title": "CSW Sextant : DTAM 975",
"notes": "Création 2021-11-09 16:30:57. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%975%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DTAM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%alimentation%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%975%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Saint%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Pierre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Miquelon%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DTAM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Saint%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Pierre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Miquelon%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%alimentation%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"did_routes-69383-01-h01": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "did_routes-69383-01-h01",
"owner_org": "did_routes-69383-01",
"title": "CSW Sextant : DIR Centre-Est",
"notes": "Création 2021-11-09 16:31:50. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Est%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DIR%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Est%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%interdépartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%routes%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172160-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172160-h03",
"owner_org": "administration-centrale-ou-ministere_172160",
"title": "CSW Sextant : DGALN",
"notes": "Création 2021-11-09 16:37:02. 39 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%nature%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGALN%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172170-h02": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172170-h02",
"owner_org": "administration-centrale-ou-ministere_172170",
"title": "CSW Sextant : DGITM",
"notes": "Création 2021-11-09 16:37:29. 9 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%infrastructures,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%transports%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGITM%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172153-h01": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172153-h01",
"owner_org": "administration-centrale-ou-ministere_172153",
"title": "CSW Sextant : DGPR",
"notes": "Création 2021-11-09 16:38:01. 15 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%prévention%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%risques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGPR%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172165-h01": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172165-h01",
"owner_org": "administration-centrale-ou-ministere_172165",
"title": "CSW Sextant : DGEC",
"notes": "Création 2021-11-09 16:38:25. 15 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%énergie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%climat%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGEC%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_178624-h01": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_178624-h01",
"owner_org": "administration-centrale-ou-ministere_178624",
"title": "CSW Sextant : SDES",
"notes": "Création 2021-11-09 16:38:56. 60 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Service%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%données%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%études%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%statistiques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172120-h03": {
"url": "https://sextant.ifremer.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172120-h03",
"owner_org": "administration-centrale-ou-ministere_172120",
"title": "CSW Sextant : CGDD",
"notes": "Création 2021-11-09 16:40:35. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Commissariat%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%général%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%développement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%durable%\"]], [[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%CGDD%\"]]], \"default_extras\": {\"catalog_title\": \"Sextant\", \"catalog_homepage\": \"https://sextant.ifremer.fr\", \"catalog_base_url\": \"https://sextant.ifremer.fr/Donnees/Catalogue#/metadata/\"}}"
},
"ddt-56260-01-h02": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "ddt-56260-01-h02",
"owner_org": "ddt-56260-01",
"title": "CSW GéoBretagne : DDTM 56",
"notes": "Création 2021-11-09 15:11:27. 6 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%56%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%56%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Morbihan%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Morbihan%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-59350-01-h02": {
"url": "https://www.geo2france.fr/geonetwork/srv/fre/csw",
"name": "ddt-59350-01-h02",
"owner_org": "ddt-59350-01",
"title": "CSW Géo2France : DDTM 59",
"notes": "Création 2021-11-09 15:12:15. 4 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%59%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%59%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Nord%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Géo2France\", \"catalog_homepage\": \"https://www.geo2france.fr\", \"catalog_base_url\": \"https://www.geo2france.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-26362-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-26362-01-h02",
"owner_org": "ddt-26362-01",
"title": "CSW datARA : DDT 26",
"notes": "Création 2021-11-09 15:12:44. 37 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%26%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%26%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Drôme%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Drôme%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-72181-01-h02": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "ddt-72181-01-h02",
"owner_org": "ddt-72181-01",
"title": "CSW SIGLOIRE : DDT 72",
"notes": "Création 2021-11-09 15:14:02. 23 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%972%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%72%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%972%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%72%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sarthe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sarthe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-61001-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "ddt-61001-01-h02",
"owner_org": "ddt-61001-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DDT 61",
"notes": "Création 2021-11-09 15:17:11. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%61%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%61%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Orne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Orne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"ddt-23096-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-23096-01-h02",
"owner_org": "ddt-23096-01",
"title": "CSW SIGENA : DDT 23",
"notes": "Création 2021-11-09 15:18:37. 4 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%23%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%23%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Creuse%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Creuse%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-44109-01-h02": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "ddt-44109-01-h02",
"owner_org": "ddt-44109-01",
"title": "CSW SIGLOIRE : DDTM 44",
"notes": "Création 2021-11-09 15:22:33. 85 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%44%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%44%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Atlantique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Atlantique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-22278-01-h02": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "ddt-22278-01-h02",
"owner_org": "ddt-22278-01",
"title": "CSW GéoBretagne : DDTM 22",
"notes": "Création 2021-11-09 15:23:19. 45 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%22%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%22%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Côtes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Armor%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Côtes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Armor%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-79191-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-79191-01-h02",
"owner_org": "ddt-79191-01",
"title": "CSW SIGENA : DDT 79",
"notes": "Création 2021-11-09 15:24:58. 52 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%79%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%79%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Deux%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sèvres%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Deux%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sèvres%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-87085-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-87085-01-h02",
"owner_org": "ddt-87085-01",
"title": "CSW SIGENA : DDT 87",
"notes": "Création 2021-11-09 15:25:44. 6 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%87%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%87%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vienne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vienne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-15014-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-15014-01-h02",
"owner_org": "ddt-15014-01",
"title": "CSW datARA : DDT 15",
"notes": "Création 2021-11-09 15:26:17. 137 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%15%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%15%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Cantal%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Cantal%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-38185-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-38185-01-h02",
"owner_org": "ddt-38185-01",
"title": "CSW datARA : DDT 38",
"notes": "Création 2021-11-09 15:27:50. 151 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%38%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%38%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Isère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Isère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-29232-01-h02": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "ddt-29232-01-h02",
"owner_org": "ddt-29232-01",
"title": "CSW GéoBretagne : DDTM 29",
"notes": "Création 2021-11-09 15:29:53. 70 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%29%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%29%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Finistère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Finistère%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-76540-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "ddt-76540-01-h02",
"owner_org": "ddt-76540-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DDTM 76",
"notes": "Création 2021-11-09 15:31:28. 3 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%76%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%76%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Seine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Seine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"ddt-42218-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-42218-01-h02",
"owner_org": "ddt-42218-01",
"title": "CSW datARA : DDT 42",
"notes": "Création 2021-11-09 15:33:33. 94 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%42%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%42%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Loiret%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Indre%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Atlantique%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Maine%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Saône%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Pays%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Loiret%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Indre%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Atlantique%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Maine%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Saône%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-07186-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-07186-01-h02",
"owner_org": "ddt-07186-01",
"title": "CSW datARA : DDT 07",
"notes": "Création 2021-11-09 15:35:06. 146 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%07%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%07%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ardèche%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ardèche%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-17300-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-17300-01-h02",
"owner_org": "ddt-17300-01",
"title": "CSW SIGENA : DDTM 17",
"notes": "Création 2021-11-09 15:40:28. 23 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%17%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%17%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Charente%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Charente%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maritime%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-86194-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-86194-01-h02",
"owner_org": "ddt-86194-01",
"title": "CSW SIGENA : DDT 86",
"notes": "Création 2021-11-09 15:44:18. 5 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%86%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%86%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vienne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vienne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-49007-01-h02": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "ddt-49007-01-h02",
"owner_org": "ddt-49007-01",
"title": "CSW SIGLOIRE : DDT 49",
"notes": "Création 2021-11-09 15:44:49. 81 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%49%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%49%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Maine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-85191-01-h02": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "ddt-85191-01-h02",
"owner_org": "ddt-85191-01",
"title": "CSW SIGLOIRE : DDTM 85",
"notes": "Création 2021-11-09 15:48:07. 28 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%85%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%85%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vendée%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vendée%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-14118-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "ddt-14118-01-h02",
"owner_org": "ddt-14118-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DDTM 14",
"notes": "Création 2021-11-09 15:48:58. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%14%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%14%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Calvados%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Calvados%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"ddt-53130-01-h02": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "ddt-53130-01-h02",
"owner_org": "ddt-53130-01",
"title": "CSW SIGLOIRE : DDT 53",
"notes": "Création 2021-11-09 15:55:04. 32 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%53%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%53%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayenne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayenne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-27229-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "ddt-27229-01-h02",
"owner_org": "ddt-27229-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DDTM 27",
"notes": "Création 2021-11-09 15:57:30. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%27%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%27%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Loir%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Eure%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Loir%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Eure%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"ddt-01053-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-01053-01-h02",
"owner_org": "ddt-01053-01",
"title": "CSW datARA : DDT 01",
"notes": "Création 2021-11-09 16:05:41. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%01%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%01%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ain%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ain%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-35238-01-h02": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "ddt-35238-01-h02",
"owner_org": "ddt-35238-01",
"title": "CSW GéoBretagne : DDTM 35",
"notes": "Création 2021-11-09 16:09:27. 51 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%35%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDTM%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%35%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ille%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vilaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDTM%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ille%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Vilaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-43157-01-h01": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-43157-01-h01",
"owner_org": "ddt-43157-01",
"title": "CSW datARA : DDT 43",
"notes": "Création 2021-11-09 16:10:07. 56 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%43%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%43%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-19272-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "ddt-19272-01-h02",
"owner_org": "ddt-19272-01",
"title": "CSW SIGENA : DDT 19",
"notes": "Création 2021-11-09 16:11:03. 4 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%19%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%19%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Corrèze%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Corrèze%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-69383-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-69383-01-h02",
"owner_org": "ddt-69383-01",
"title": "CSW datARA : DDT 69",
"notes": "Création 2021-11-09 16:13:04. 126 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%69%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%69%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Bouches%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Auvergne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Bouches%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/home\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-63113-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-63113-01-h02",
"owner_org": "ddt-63113-01",
"title": "CSW datARA : DDT 63",
"notes": "Création 2021-11-09 16:13:51. 30 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%63%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%63%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Puy%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Dôme%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Puy%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Dôme%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-45234-01-h01": {
"url": "http://metadata.carmencarto.fr/geonetwork/11/fre/csw",
"name": "dreal-45234-01-h01",
"owner_org": "dreal-45234-01",
"title": "CSW Catalogue Carmen de la DREAL Centre-Val de Loire : DREAL Centre-Val-de-Loire",
"notes": "Création 2021-11-09 16:18:06. 160 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue de la DREAL Centre-Val de Loire\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/11/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/11/fre/catalog.search#/metadata/\"}}"
},
"dreal-45234-01-h02": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "dreal-45234-01-h02",
"owner_org": "dreal-45234-01",
"title": "CSW GéoIDE Catalogue : DREAL Centre-Val de Loire [lots]",
"notes": "Création 2023-10-25 17:59:00. Moissonnage limité aux lots.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-45234-01-h03": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "dreal-45234-01-h03",
"owner_org": "dreal-45234-01",
"title": "CSW GéoIDE Catalogue : DREAL Centre-Val de Loire [jeux de données]",
"notes": "Création 2023-10-25 17:59:00. Moissonnage limité aux jeux de données.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Val%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Loire%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-76540-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "dreal-76540-01-h02",
"owner_org": "dreal-76540-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DREAL Normandie",
"notes": "Création 2021-11-09 16:20:17. 273 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Normandie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Normandie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"dreal-86194-01-h02": {
"url": "https://www.sigena.fr/geonetwork/srv/fre/csw",
"name": "dreal-86194-01-h02",
"owner_org": "dreal-86194-01",
"title": "CSW SIGENA : DREAL Nouvelle-Aquitaine",
"notes": "Création 2021-11-09 16:20:44. 691 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Nouvelle%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Aquitaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Nouvelle%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Aquitaine%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"SIGENA\", \"catalog_homepage\": \"https://www.sigena.fr\", \"catalog_base_url\": \"https://catalogue.sigena.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-2a004-01-h01": {
"url": "https://georchestra.ac-corse.fr/geonetwork/srv/fre/csw",
"name": "dreal-2a004-01-h01",
"owner_org": "dreal-2a004-01",
"title": "CSW Observatoire du Développement Durable de Corse : DREAL Corse",
"notes": "Création 2021-11-09 16:22:19. 418 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%irection%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%égionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%nvironnement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%ménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%ogement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Corse%\"]]], \"default_extras\": {\"catalog_title\": \"Observatoire du Développement Durable de Corse\", \"catalog_homepage\": \"https://georchestra.ac-corse.fr\", \"catalog_base_url\": \"https://georchestra.ac-corse.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-35238-01-h01": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "dreal-35238-01-h01",
"owner_org": "dreal-35238-01",
"title": "CSW GéoBretagne : DREAL Bretagne",
"notes": "Création 2021-11-09 16:22:29. 233 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-35238-01-h02": {
"url": "http://metadata.carmencarto.fr/geonetwork/8/fre/csw",
"name": "dreal-35238-01-h02",
"owner_org": "dreal-35238-01",
"title": "CSW Catalogue Carmen de la DREAL Normandie : DREAL Bretagne",
"notes": "Création 2021-11-09 16:22:36. 8 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Bretagne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DREAL Normandie\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/home\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/8/fre/catalog.search#/metadata/\"}}"
},
"dreal-69386-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "dreal-69386-01-h02",
"owner_org": "dreal-69386-01",
"title": "CSW datARA : DREAL Auvergne-Rhône-Alpes",
"notes": "Création 2021-11-09 16:22:57. 423 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Auvergne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Alpes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Auvergne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Alpes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-69386-01-h03": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "dreal-69386-01-h03",
"owner_org": "dreal-69386-01",
"title": "CSW CeremaData : DREAL Auvergne-Rhône-Alpes",
"notes": "Création 2021-11-09 16:23:17. 11 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Auvergne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Alpes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Auvergne%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Rhône%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Alpes%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-31555-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "dreal-31555-01-h02",
"owner_org": "dreal-31555-01",
"title": "CSW datARA : DREAL Occitanie",
"notes": "Création 2021-11-09 16:23:27. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-31555-01-h01": {
"url": "https://www.picto-occitanie.fr/geonetwork/srv/fre/csw-geocatalogue",
"name": "dreal-31555-01-h01",
"owner_org": "dreal-31555-01",
"title": "CSW PICTO-Occitanie : DREAL Occitanie",
"notes": "Création 2021-11-09 16:23:30. 388 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"PICTO-Occitanie\", \"catalog_homepage\": \"https://www.picto-occitanie.fr\", \"catalog_base_url\": \"https://catalogue.picto-occitanie.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal-31555-01-h04": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "dreal-31555-01-h04",
"owner_org": "dreal-31555-01",
"title": "CSW CeremaData : DREAL Occitanie",
"notes": "Création 2021-11-09 16:23:40. 4 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DREAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Occitanie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%régionale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97302-01-h02": {
"url": "https://catalogue.geoguyane.fr/geonetwork/srv/fr/csw-geoguyane",
"name": "dreal_ut-97302-01-h02",
"owner_org": "dreal_ut-97302-01",
"title": "CSW GéoGuyane : DEAL 973",
"notes": "Création 2021-11-09 16:26:32. 310 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%973%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%973%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guyane%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guyane%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"GéoGuyane\", \"catalog_homepage\": \"https://www.geoguyane.fr\", \"catalog_base_url\": \"https://www.geoguyane.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97229-01-h02": {
"url": "http://www.geomartinique.fr/geonetwork/srv/fre/csw",
"name": "dreal_ut-97229-01-h02",
"owner_org": "dreal_ut-97229-01",
"title": "CSW GéoMartinique : DEAL 972",
"notes": "Création 2021-11-09 16:27:20. 29 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%972%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%972%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Martinique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Martinique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"GéoMartinique\", \"catalog_homepage\": \"https://www.geomartinique.fr\", \"catalog_base_url\": \"https://catalogue.geomartinique.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97105-01-h01": {
"url": "https://www.karugeo.fr/geonetwork/srv/fre/csw",
"name": "dreal_ut-97105-01-h01",
"owner_org": "dreal_ut-97105-01",
"title": "CSW KaruGéo : DEAL 971",
"notes": "Création 2021-11-09 16:27:59. 114 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%971%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%971%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guadeloupe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guadeloupe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"KaruGéo\", \"catalog_homepage\": \"https://www.karugeo.fr\", \"catalog_base_url\": \"https://catalogue.karugeo.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97411-01-h01": {
"url": "http://metadata.carmencarto.fr/geonetwork/29/fre/csw",
"name": "dreal_ut-97411-01-h01",
"owner_org": "dreal_ut-97411-01",
"title": "CSW Catalogue Carmen de la DEAL Réunion : DEAL 974",
"notes": "Création 2021-11-09 16:28:45. 7 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%974%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%974%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Catalogue Carmen de la DEAL Réunion\", \"catalog_homepage\": \"http://metadata.carmencarto.fr/geonetwork/29/fre/catalog.search#\", \"catalog_base_url\": \"http://metadata.carmencarto.fr/geonetwork/29/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97611-01-h02": {
"url": "https://www.observatoire-de-mayotte.fr/geonetwork/srv/fre/csw",
"name": "dreal_ut-97611-01-h02",
"owner_org": "dreal_ut-97611-01",
"title": "CSW Observatoire de Mayotte : DEAL 976",
"notes": "Création 2021-11-09 16:29:40. 107 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%976%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayotte%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayotte%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Observatoire de Mayotte\", \"catalog_homepage\": \"https://www.observatoire-de-mayotte.fr\", \"catalog_base_url\": \"https://catalogue.observatoire-de-mayotte.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"did_routes-69383-01-h02": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "did_routes-69383-01-h02",
"owner_org": "did_routes-69383-01",
"title": "CSW CeremaData : DIR Centre-Est",
"notes": "Création 2021-11-09 16:31:51. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Est%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DIR%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Est%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%interdépartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%routes%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"did_routes-87085-01-h01": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "did_routes-87085-01-h01",
"owner_org": "did_routes-87085-01",
"title": "CSW CeremaData : DIR Centre-Ouest",
"notes": "Création 2021-11-09 16:32:13. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DIR%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%interdépartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%routes%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"did_routes-35238-01-h01": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "did_routes-35238-01-h01",
"owner_org": "did_routes-35238-01",
"title": "CSW GéoBretagne : DIR Ouest",
"notes": "Création 2021-11-09 16:34:07. 28 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Nord%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Sud%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DIR%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Centre%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Nord%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%Sud%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%interdépartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%routes%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"did_routes-31555-01-h01": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "did_routes-31555-01-h01",
"owner_org": "did_routes-31555-01",
"title": "CSW CeremaData : DIR Sud-Ouest",
"notes": "Création 2021-11-09 16:34:45. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sud%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DIR%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sud%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Ouest%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%interdépartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%routes%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172160-h02": {
"url": "https://www.karugeo.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172160-h02",
"owner_org": "administration-centrale-ou-ministere_172160",
"title": "CSW KaruGéo : DGALN",
"notes": "Création 2021-11-09 16:36:57. 7 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%nature%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGALN%\"]]], \"default_extras\": {\"catalog_title\": \"KaruGéo\", \"catalog_homepage\": \"https://www.karugeo.fr\", \"catalog_base_url\": \"https://catalogue.karugeo.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172170-h01": {
"url": "https://www.karugeo.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172170-h01",
"owner_org": "administration-centrale-ou-ministere_172170",
"title": "CSW KaruGéo : DGITM",
"notes": "Création 2021-11-09 16:37:22. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%infrastructures,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%transports%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGITM%\"]]], \"default_extras\": {\"catalog_title\": \"KaruGéo\", \"catalog_homepage\": \"https://www.karugeo.fr\", \"catalog_base_url\": \"https://catalogue.karugeo.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172153-h04": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "administration-centrale-ou-ministere_172153-h04",
"owner_org": "administration-centrale-ou-ministere_172153",
"title": "CSW datARA : DGPR",
"notes": "Création 2021-11-09 16:37:44. 8 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%prévention%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%risques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGPR%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_178624-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "administration-centrale-ou-ministere_178624-h02",
"owner_org": "administration-centrale-ou-ministere_178624",
"title": "CSW datARA : SDES",
"notes": "Création 2021-11-09 16:38:38. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Service%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%données%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%études%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%statistiques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_178624-h03": {
"url": "https://www.karugeo.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_178624-h03",
"owner_org": "administration-centrale-ou-ministere_178624",
"title": "CSW KaruGéo : SDES",
"notes": "Création 2021-11-09 16:38:51. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Service%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%données%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%études%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%statistiques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"]]], \"default_extras\": {\"catalog_title\": \"KaruGéo\", \"catalog_homepage\": \"https://www.karugeo.fr\", \"catalog_base_url\": \"https://catalogue.karugeo.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_178624-h04": {
"url": "https://wxs.ign.fr/catalogue/csw",
"name": "administration-centrale-ou-ministere_178624-h04",
"owner_org": "administration-centrale-ou-ministere_178624",
"title": "CSW Géoportail IGN : SDES",
"notes": "Création 2021-11-09 16:39:02. 3 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsLike\", \"OrganisationName\", \"%Service%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%données%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%études%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%statistiques%\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"]], [\"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"]], \"default_extras\": {\"catalog_title\": \"Géoservices IGN\", \"catalog_homepage\": \"https://geoservices.ign.fr/catalogue\", \"catalog_base_url\": \"https://geoservices.ign.fr/bdalti/\"}}"
},
"ddt-2b033-01-h02": {
"url": "https://georchestra.ac-corse.fr/geonetwork/srv/fre/csw",
"name": "ddt-2b033-01-h02",
"owner_org": "ddt-2b033-01",
"title": "CSW Observatoire du Développement Durable de Corse : DDT 2B",
"notes": "Création 2021-11-09 16:39:39. 18 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%irection%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%épartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%erritoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Haute%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Corse%\"]]], \"default_extras\": {\"catalog_title\": \"Observatoire du Développement Durable de Corse\", \"catalog_homepage\": \"https://georchestra.ac-corse.fr\", \"catalog_base_url\": \"https://georchestra.ac-corse.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-2a004-01-h02": {
"url": "https://georchestra.ac-corse.fr/geonetwork/srv/fre/csw",
"name": "ddt-2a004-01-h02",
"owner_org": "ddt-2a004-01",
"title": "CSW Observatoire du Développement Durable de Corse : DDT 2A",
"notes": "Création 2021-11-09 16:40:20. 19 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%irection%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%épartementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%erritoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Corse%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Sud%\"]]], \"default_extras\": {\"catalog_title\": \"Observatoire du Développement Durable de Corse\", \"catalog_homepage\": \"https://georchestra.ac-corse.fr\", \"catalog_base_url\": \"https://georchestra.ac-corse.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172120-h01": {
"url": "https://catalogue.sigloire.fr/geonetwork/srv/fr/csw-sigloire",
"name": "administration-centrale-ou-ministere_172120-h01",
"owner_org": "administration-centrale-ou-ministere_172120",
"title": "CSW SIGLOIRE : CGDD",
"notes": "Création 2021-11-09 16:40:25. 4 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Commissariat%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%général%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%développement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%durable%\"]], [[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%CGDD%\"]]], \"default_extras\": {\"catalog_title\": \"SIGLOIRE\", \"catalog_homepage\": \"http://www.sigloire.fr\", \"catalog_base_url\": \"https://catalogue.sigloire.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172120-h02": {
"url": "http://geobretagne.fr/geonetwork/srv/fre/csw",
"name": "administration-centrale-ou-ministere_172120-h02",
"owner_org": "administration-centrale-ou-ministere_172120",
"title": "CSW GéoBretagne : CGDD",
"notes": "Création 2021-11-09 16:40:28. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Commissariat%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%général%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%développement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%durable%\"]], [[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"Not\", \"PropertyIsLike\", \"Identifier\", \"fr-120066022-%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"SANDRE\"], [\"PropertyIsLike\", \"OrganisationName\", \"%CGDD%\"]]], \"default_extras\": {\"catalog_title\": \"GéoBretagne\", \"catalog_homepage\": \"https://cms.geobretagne.fr\", \"catalog_base_url\": \"https://geobretagne.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172120-h04": {
"url": "https://www.cdata.cerema.fr/geonetwork/srv/fre/csw-catalogue-cdata",
"name": "administration-centrale-ou-ministere_172120-h04",
"owner_org": "administration-centrale-ou-ministere_172120",
"title": "CSW CeremaData : CGDD",
"notes": "Création 2021-11-09 16:40:36. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Commissariat%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%général%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%développement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%durable%\"]], [[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%CGDD%\"]]], \"default_extras\": {\"catalog_title\": \"CeremaData\", \"catalog_homepage\": \"https://www.cdata.cerema.fr\", \"catalog_base_url\": \"https://catalogue.cdata.cerema.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-03321-01-h02": {
"url": "https://www.datara.gouv.fr/geonetwork/srv/eng/csw-RAIN",
"name": "ddt-03321-01-h02",
"owner_org": "ddt-03321-01",
"title": "CSW datARA : DDT 03",
"notes": "Création 2021-11-13 18:59:12. 21 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%03%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DDT%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%03%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Allier%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DDT%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Allier%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%départementale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%territoires%\"]]], \"default_extras\": {\"catalog_title\": \"datARA\", \"catalog_homepage\": \"https://datara.gouv.fr\", \"catalog_base_url\": \"https://www.datara.gouv.fr/geonetwork/srv/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172160-h04": {
"url": "https://www.mongeosource.fr/geosource/1111/fre/csw",
"name": "administration-centrale-ou-ministere_172160-h04",
"owner_org": "administration-centrale-ou-ministere_172160",
"title": "CSW GéoLittoral : DGALN",
"notes": "Création 2021-11-09 16:37:04. 37 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%nature%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGALN%\"]]], \"default_extras\": {\"catalog_title\": \"GéoLittoral\", \"catalog_homepage\": \"http://www.geolittoral.developpement-durable.gouv.fr\", \"catalog_base_url\": \"https://www.mongeosource.fr/geosource/1111/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172170-h03": {
"url": "https://www.mongeosource.fr/geosource/1111/fre/csw",
"name": "administration-centrale-ou-ministere_172170-h03",
"owner_org": "administration-centrale-ou-ministere_172170",
"title": "CSW GéoLittoral : DGITM",
"notes": "Création 2021-11-09 16:37:30. 6 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%infrastructures,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%transports%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%mer%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGITM%\"]]], \"default_extras\": {\"catalog_title\": \"GéoLittoral\", \"catalog_homepage\": \"http://www.geolittoral.developpement-durable.gouv.fr\", \"catalog_base_url\": \"https://www.mongeosource.fr/geosource/1111/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172153-h02": {
"url": "https://www.mongeosource.fr/geosource/1111/fre/csw",
"name": "administration-centrale-ou-ministere_172153-h02",
"owner_org": "administration-centrale-ou-ministere_172153",
"title": "CSW GéoLittoral : DGPR",
"notes": "Création 2021-11-09 16:38:03. 11 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%prévention%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%risques%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGPR%\"]]], \"default_extras\": {\"catalog_title\": \"GéoLittoral\", \"catalog_homepage\": \"http://www.geolittoral.developpement-durable.gouv.fr\", \"catalog_base_url\": \"https://www.mongeosource.fr/geosource/1111/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172165-h02": {
"url": "https://www.mongeosource.fr/geosource/1111/fre/csw",
"name": "administration-centrale-ou-ministere_172165-h02",
"owner_org": "administration-centrale-ou-ministere_172165",
"title": "CSW GéoLittoral : DGEC",
"notes": "Création 2021-11-09 16:38:27. 16 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%générale%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%énergie%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%climat%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DGEC%\"]]], \"default_extras\": {\"catalog_title\": \"GéoLittoral\", \"catalog_homepage\": \"http://www.geolittoral.developpement-durable.gouv.fr\", \"catalog_base_url\": \"https://www.mongeosource.fr/geosource/1111/fre/catalog.search#/metadata/\"}}"
},
"administration-centrale-ou-ministere_172120-h05": {
"url": "https://www.mongeosource.fr/geosource/1111/fre/csw",
"name": "administration-centrale-ou-ministere_172120-h05",
"owner_org": "administration-centrale-ou-ministere_172120",
"title": "CSW GéoLittoral : CGDD",
"notes": "Création 2021-11-09 16:40:37. 1 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Commissariat%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%général%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%développement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%durable%\"]], [[\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SOeS%\"], [\"Not\", \"PropertyIsLike\", \"OrganisationName\", \"%SDES%\"], [\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%CGDD%\"]]], \"default_extras\": {\"catalog_title\": \"GéoLittoral\", \"catalog_homepage\": \"http://www.geolittoral.developpement-durable.gouv.fr\", \"catalog_base_url\": \"https://www.mongeosource.fr/geosource/1111/fre/catalog.search#/metadata/\"}}"
},
"dreal_ut-97302-01-h01": {
"url": "http://www.sandre.eaufrance.fr/atlas/srv/fre/csw",
"name": "dreal_ut-97302-01-h01",
"owner_org": "dreal_ut-97302-01",
"title": "CSW Atlas-Catalogue du Sandre : DEAL 973",
"notes": "Création 2021-11-09 16:26:37. 10 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%973%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%973%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guyane%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guyane%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Atlas-Catalogue du Sandre\", \"catalog_homepage\": \"https://www.sandre.eaufrance.fr\", \"catalog_base_url\": \"https://www.sandre.eaufrance.fr/atlas/srv/fre/catalog.search#/metadata\"}}"
},
"dreal_ut-97229-01-h01": {
"url": "http://www.sandre.eaufrance.fr/atlas/srv/fre/csw",
"name": "dreal_ut-97229-01-h01",
"owner_org": "dreal_ut-97229-01",
"title": "CSW Atlas-Catalogue du Sandre : DEAL 972",
"notes": "Création 2021-11-09 16:27:22. 6 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%972%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%972%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Martinique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Martinique%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Atlas-Catalogue du Sandre\", \"catalog_homepage\": \"https://www.sandre.eaufrance.fr\", \"catalog_base_url\": \"https://www.sandre.eaufrance.fr/atlas/srv/fre/catalog.search#/metadata\"}}"
},
"dreal_ut-97105-01-h02": {
"url": "http://www.sandre.eaufrance.fr/atlas/srv/fre/csw",
"name": "dreal_ut-97105-01-h02",
"owner_org": "dreal_ut-97105-01",
"title": "CSW Atlas-Catalogue du Sandre : DEAL 971",
"notes": "Création 2021-11-09 16:28:05. 2 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%971%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%971%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guadeloupe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Guadeloupe%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Atlas-Catalogue du Sandre\", \"catalog_homepage\": \"https://www.sandre.eaufrance.fr\", \"catalog_base_url\": \"https://www.sandre.eaufrance.fr/atlas/srv/fre/catalog.search#/metadata\"}}"
},
"dreal_ut-97411-01-h02": {
"url": "http://www.sandre.eaufrance.fr/atlas/srv/fre/csw",
"name": "dreal_ut-97411-01-h02",
"owner_org": "dreal_ut-97411-01",
"title": "CSW Atlas-Catalogue du Sandre : DEAL 974",
"notes": "Création 2021-11-09 16:28:49. 17 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%974%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%974%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Réunion%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Atlas-Catalogue du Sandre\", \"catalog_homepage\": \"https://www.sandre.eaufrance.fr\", \"catalog_base_url\": \"https://www.sandre.eaufrance.fr/atlas/srv/fre/catalog.search#/metadata\"}}"
},
"dreal_ut-97611-01-h01": {
"url": "http://www.sandre.eaufrance.fr/atlas/srv/fre/csw",
"name": "dreal_ut-97611-01-h01",
"owner_org": "dreal_ut-97611-01",
"title": "CSW Atlas-Catalogue du Sandre : DEAL 976",
"notes": "Création 2021-11-09 16:29:32. 14 fiches à date.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 5, \"ogcfilter\": [[[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%976%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%DEAL%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%976%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayotte%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%%DEAL%%\"]], [[\"PropertyIsEqualTo\", \"dc:type\", \"dataset\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Mayotte%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%Direction%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%environnement,%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%aménagement%\"], [\"PropertyIsLike\", \"OrganisationName\", \"%logement%\"]]], \"default_extras\": {\"catalog_title\": \"Atlas-Catalogue du Sandre\", \"catalog_homepage\": \"https://www.sandre.eaufrance.fr\", \"catalog_base_url\": \"https://www.sandre.eaufrance.fr/atlas/srv/fre/catalog.search#/metadata\"}}"
},
"ddt-45234-01-h01": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-45234-01-h01",
"owner_org": "ddt-45234-01",
"title": "CSW GéoIDE Catalogue : DDT 45 [lots]",
"notes": "Création 2021-12-09 17:13:10. 24 fiches à date. Moissonnage limité aux lots.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"45\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"45\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loiret\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loiret\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-45234-01-h02": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-45234-01-h02",
"owner_org": "ddt-45234-01",
"title": "CSW GéoIDE Catalogue : DDT 45 [jeux de données]",
"notes": "Création 2021-12-09 17:13:10. 271 fiches à date. Moissonnage limité aux jeux de données.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"45\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"45\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loiret\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loiret\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-37261-01-h01": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-37261-01-h01",
"owner_org": "ddt-37261-01",
"title": "CSW GéoIDE Catalogue : DDT 37 [lots]",
"notes": "Création 2021-12-09 17:13:20. 8 fiches à date. Moissonnage limité aux lots.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"37\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"37\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Indre\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loire\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Indre\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loire\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-37261-01-h02": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-37261-01-h02",
"owner_org": "ddt-37261-01",
"title": "CSW GéoIDE Catalogue : DDT 37 [jeux de données]",
"notes": "Création 2021-12-09 17:13:20. 94 fiches à date. Moissonnage limité aux jeux de données.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"37\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"37\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Indre\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loire\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDT\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Indre\"], [\"PropertyIsLike\", \"OrganisationName\", \"Loire\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-56260-01-h01": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-56260-01-h01",
"owner_org": "ddt-56260-01",
"title": "CSW GéoIDE Catalogue : DDTM 56 [lots]",
"notes": "Création 2021-12-09 17:13:24. 3 fiches à date. Moissonnage limité aux lots.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"56\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"], [\"PropertyIsLike\", \"OrganisationName\", \"56\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Morbihan\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Morbihan\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-56260-01-h04": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-56260-01-h04",
"owner_org": "ddt-56260-01",
"title": "CSW GéoIDE Catalogue : DDTM 56 [jeux de données]",
"notes": "Création 2021-12-09 17:13:24. 21 fiches à date. Moissonnage limité aux jeux de données.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"56\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"], [\"PropertyIsLike\", \"OrganisationName\", \"56\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Morbihan\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Morbihan\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-59350-01-h01": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-59350-01-h01",
"owner_org": "ddt-59350-01",
"title": "CSW GéoIDE Catalogue : DDTM 59 [lots]",
"notes": "Création 2021-12-09 17:13:26. 3 fiches à date. Moissonnage limité aux lots.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"59\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"], [\"PropertyIsLike\", \"OrganisationName\", \"59\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Nord\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"Nord\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"], [\"PropertyIsLike\", \"Identifier\", \"fr-120066022-ldd-%\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"
},
"ddt-59350-01-h03": {
"url": "http://ogc.geo-ide.developpement-durable.gouv.fr/csw/dataset-harvestable",
"name": "ddt-59350-01-h03",
"owner_org": "ddt-59350-01",
"title": "CSW GéoIDE Catalogue : DDTM 59 [jeux de données]",
"notes": "Création 2021-12-09 17:13:26. 25 fiches à date. Moissonnage limité aux jeux de données.",
"source_type": "csw",
"frequency": "WEEKLY",
"config": "{\"maxtrials\": 30, \"ogcfilter\": [[[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"59\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"], [\"PropertyIsLike\", \"OrganisationName\", \"59\"]], [[\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"], [\"PropertyIsLike\", \"OrganisationName\", \"Nord\"], [\"PropertyIsLike\", \"OrganisationName\", \"Direction\"], [\"PropertyIsLike\", \"OrganisationName\", \"départementale\"], [\"PropertyIsLike\", \"OrganisationName\", \"territoires\"], [\"PropertyIsLike\", \"OrganisationName\", \"mer\"]], [[\"PropertyIsLike\", \"OrganisationName\", \"Nord\"], [\"PropertyIsLike\", \"OrganisationName\", \"DDTM\"], [\"PropertyIsLike\", \"Identifier\", \"fr-120066022-jdd-%\"]]], \"default_extras\": {\"catalog_title\": \"GéoIDE Catalogue\", \"catalog_homepage\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr\", \"catalog_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\", \"attributes_base_url\": \"http://catalogue.geo-ide.developpement-durable.gouv.fr/catalogue/srv/fre/catalog.search#/metadata/\"}}"