adiwg-mdtranslator 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/adiwg/mdtranslator/internal/internal_metadata_obj.rb +5 -3
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_dateTime.rb +6 -6
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_geologicAge.rb +66 -0
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_identification.rb +4 -6
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_timeInstant.rb +23 -6
- data/lib/adiwg/mdtranslator/readers/fgdc/modules/module_timePeriod.rb +87 -24
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_dataDictionary.rb +135 -126
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_geologicAge.rb +84 -0
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_timeInstant.rb +80 -68
- data/lib/adiwg/mdtranslator/readers/mdJson/modules/module_timePeriod.rb +118 -95
- data/lib/adiwg/mdtranslator/version.rb +3 -1
- data/lib/adiwg/mdtranslator/writers/html/sections/html_dataDictionary.rb +9 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_domain.rb +4 -4
- data/lib/adiwg/mdtranslator/writers/html/sections/html_entity.rb +6 -6
- data/lib/adiwg/mdtranslator/writers/html/sections/html_geologicAge.rb +71 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_temporalExtent.rb +20 -21
- data/lib/adiwg/mdtranslator/writers/html/sections/html_timeInstant.rb +8 -0
- data/lib/adiwg/mdtranslator/writers/html/sections/html_timePeriod.rb +23 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_dictionary.rb +5 -3
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_geologicAge.rb +34 -0
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_timeInstant.rb +4 -1
- data/lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_timePeriod.rb +6 -2
- data/lib/adiwg/mdtranslator/writers/sbJson/sections/sbJson_id.rb +0 -2
- data/lib/adiwg/mdtranslator/writers/sbJson/sections/sbJson_sbJson.rb +23 -2
- metadata +6 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: adiwg-mdtranslator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stan Smith
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-11-
|
12
|
+
date: 2017-11-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -273,6 +273,7 @@ files:
|
|
273
273
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_entityOverview.rb
|
274
274
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_enumerated.rb
|
275
275
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_fgdc.rb
|
276
|
+
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_geologicAge.rb
|
276
277
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_horizontalPlanar.rb
|
277
278
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_horizontalReference.rb
|
278
279
|
- lib/adiwg/mdtranslator/readers/fgdc/modules/module_identification.rb
|
@@ -347,6 +348,7 @@ files:
|
|
347
348
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geoJson.rb
|
348
349
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geographicExtent.rb
|
349
350
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geographicResolution.rb
|
351
|
+
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geologicAge.rb
|
350
352
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geometryCollection.rb
|
351
353
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geometryFeature.rb
|
352
354
|
- lib/adiwg/mdtranslator/readers/mdJson/modules/module_geometryObject.rb
|
@@ -478,6 +480,7 @@ files:
|
|
478
480
|
- lib/adiwg/mdtranslator/writers/html/sections/html_geographicElement.rb
|
479
481
|
- lib/adiwg/mdtranslator/writers/html/sections/html_geographicExtent.rb
|
480
482
|
- lib/adiwg/mdtranslator/writers/html/sections/html_geographicResolution.rb
|
483
|
+
- lib/adiwg/mdtranslator/writers/html/sections/html_geologicAge.rb
|
481
484
|
- lib/adiwg/mdtranslator/writers/html/sections/html_geometryCollection.rb
|
482
485
|
- lib/adiwg/mdtranslator/writers/html/sections/html_geometryObject.rb
|
483
486
|
- lib/adiwg/mdtranslator/writers/html/sections/html_georectifiedRepresentation.rb
|
@@ -681,6 +684,7 @@ files:
|
|
681
684
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_funding.rb
|
682
685
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_geographicExtent.rb
|
683
686
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_geographicResolution.rb
|
687
|
+
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_geologicAge.rb
|
684
688
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_georectifiedRepresentation.rb
|
685
689
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_georeferenceableRepresentation.rb
|
686
690
|
- lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_graphicOverview.rb
|