Skip to content

Commit 6fb7c9e

Browse files
authored
Merge pull request #21 from pvlib/xspacing
rename x_spacing to row_spacing, and rename y_spacing to column_spacing
2 parents 8169e43 + 687f12a commit 6fb7c9e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Examples/05 - VerySimpleFixedPVC2_with_electrical_layout_v3.pvc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@
416416
<technique profile="PVCollada-2.0">
417417
<!-- rack tag -->
418418
<pv:rack>
419-
<pv:x_spacing>20</pv:x_spacing>
420-
<pv:y_spacing>20</pv:y_spacing>
419+
<pv:row_spacing>20</pv:row_spacing>
420+
<pv:column_spacing>20</pv:column_spacing>
421421
<pv:module_rows>1</pv:module_rows>
422422
<pv:module_columns>4</pv:module_columns>
423423
<pv:module_orientation>portrait</pv:module_orientation>

schema/pvcollada_schema_0.1.xsd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -805,14 +805,14 @@ xmlns:collada="http://www.collada.org/2008/03/COLLADASchema">
805805
</xs:annotation>
806806
<xs:complexType>
807807
<xs:sequence>
808-
<xs:element name="x_spacing" type="collada:float_type">
808+
<xs:element name="row_spacing" type="collada:float_type">
809809
<xs:annotation>
810-
<xs:documentation>Spacing between modules on the X axis (in unit from the unit tag)</xs:documentation>
810+
<xs:documentation>Spacing between modules in the row direction</xs:documentation>
811811
</xs:annotation>
812812
</xs:element>
813-
<xs:element name="y_spacing" type="collada:float_type">
813+
<xs:element name="column_spacing" type="collada:float_type">
814814
<xs:annotation>
815-
<xs:documentation>Spacing between modules on the Y axis (in unit from the unit tag)</xs:documentation>
815+
<xs:documentation>Spacing between modules in the column direction</xs:documentation>
816816
</xs:annotation>
817817
</xs:element>
818818
<xs:element name="module_rows" type="xs:int">

0 commit comments

Comments
 (0)